DB/MSSQL

SELECT UPDATE 구문

풍풍 2014. 4. 17. 16:23
UPDATE table1
SET col1 = B.col1
FROM table1 A, table2 B
WHERE A.col2=B.col2 AND A.col3=B.col3