Return to Snippet

Revision: 30260
at August 11, 2010 00:41 by ChrisCantley


Initial Code

update t1
set col2 = t2.col2
from table1 t1 
inner join table2 t2
on t1.col1=t1.col2
where Col3 >5

Initial URL


Initial Description


Initial Title
Update one table from another

Initial Tags
update

Initial Language
SQL