Dec 4, 2008 #1 Linda224 Programmer Dec 6, 2006 80 US Hello I am trying to update a table like this: Update tbl1 set tbl1.col1 = tbl2.col1 where tbl1.col2 = tbl2col2 But of course it doesnt work Please help!!!! thank you Linda
Hello I am trying to update a table like this: Update tbl1 set tbl1.col1 = tbl2.col1 where tbl1.col2 = tbl2col2 But of course it doesnt work Please help!!!! thank you Linda
Dec 4, 2008 #2 RiverGuy Programmer Jul 18, 2002 5,011 US You need a from clause Update tbl1 set tbl1.col1 = tbl2.col1 FROM tbl1, tbl2 where tbl1.col2 = tbl2col2 Upvote 0 Downvote
You need a from clause Update tbl1 set tbl1.col1 = tbl2.col1 FROM tbl1, tbl2 where tbl1.col2 = tbl2col2
Dec 4, 2008 Thread starter #3 Linda224 Programmer Dec 6, 2006 80 US Ooops I knew I was forgetting something Thank you Thank you Thank you Upvote 0 Downvote