Answers for "update table with join query"

SQL
1

how to add where command in update comand with joins

UPDATE A
SET foo = B.bar
FROM TableA A
JOIN TableB B
    ON A.col1 = B.colx
WHERE ...
Posted by: Guest on August-03-2020

Code answers related to "update table with join query"

Code answers related to "SQL"

Browse Popular Code Answers by Language