/ Published in: SQL
Expand |
Embed | Plain Text
UPDATE t1 SET col2 = t2.col2 FROM table1 t1 INNER JOIN table2 t2 ON t1.col1=t1.col2 WHERE Col3 >5
You need to login to post a comment.
ChrisCantley on 08/11/10
4 people have marked this snippet as a favorite
hchattaway
mprabhuram
ljayz
Tyster
UPDATE t1 SET col2 = t2.col2 FROM table1 t1 INNER JOIN table2 t2 ON t1.col1=t1.col2 WHERE Col3 >5
You need to login to post a comment.