Jun 4, 2008 #1 Dashley Programmer Joined Dec 5, 2002 Messages 925 Location US I'm not used to using access sql. Here's what I'm tring to do. table1 table2 ISBN | Author | Description ISBN | Description all fields are text I want to update table1.description with table2 description where table2.ISBN = table1 ISBN thanks.
I'm not used to using access sql. Here's what I'm tring to do. table1 table2 ISBN | Author | Description ISBN | Description all fields are text I want to update table1.description with table2 description where table2.ISBN = table1 ISBN thanks.
Jun 4, 2008 1 #2 Golom Programmer Joined Sep 1, 2003 Messages 5,595 Location CA Code: UPDATE Table1 INNER JOIN Table2 ON Table1.ISBN = Table2.ISBN SET Table1.Description = Table2.Description Upvote 0 Downvote
Code: UPDATE Table1 INNER JOIN Table2 ON Table1.ISBN = Table2.ISBN SET Table1.Description = Table2.Description
Jun 4, 2008 Thread starter #3 Dashley Programmer Joined Dec 5, 2002 Messages 925 Location US Golom Wow you made that too easy. I was trying an inner selet. Thanks dash Upvote 0 Downvote