Answers for "case update one table from another table in sql"

SQL
3

update sql server from another table

UPDATE t1
SET t1.column = t2.column
FROM Table1 t1 
INNER JOIN Table2 t2 ON t1.id = t2.id;
Posted by: Guest on October-18-2021

Code answers related to "case update one table from another table in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language