Sep 26, 2002 #1 BRADLEY21 Programmer Sep 19, 2002 35 US I am trying to update a field of table1 with a field from table2. something like this.. Update table2 set field1 with (field1 of table2) both tables have a common key to join Any help would be appreciated
I am trying to update a field of table1 with a field from table2. something like this.. Update table2 set field1 with (field1 of table2) both tables have a common key to join Any help would be appreciated
Sep 26, 2002 #2 MeanGreen IS-IT--Management Sep 12, 2002 672 US Try this: update table1 set col1 = table2.col1 from table1 join table2 on table1.keycol = table2.keycol That should do it. Good Luck. Upvote 0 Downvote
Try this: update table1 set col1 = table2.col1 from table1 join table2 on table1.keycol = table2.keycol That should do it. Good Luck.