Jan 23, 2003 #1 shmo IS-IT--Management Nov 25, 2002 18 US How do I update a field in (table A) using data from a field from (table b) in the same database? The transact sql statement does not work in ISQL. Help!
How do I update a field in (table A) using data from a field from (table b) in the same database? The transact sql statement does not work in ISQL. Help!
Jan 24, 2003 Thread starter #2 shmo IS-IT--Management Nov 25, 2002 18 US Nevermind! I figured it out... FYI Update table1 set table1.f1 = select table2.f2 from table2.f2 where table1.key = table2.key Upvote 0 Downvote
Nevermind! I figured it out... FYI Update table1 set table1.f1 = select table2.f2 from table2.f2 where table1.key = table2.key