Answers for "update on join table"

SQL
2

join update query in sql

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
0

update join

//mysql
UPDATE store_fars
        INNER JOIN
   fake ON store_fars.id = fake.id
SET 
    fake.id = store_fars.id
Posted by: Guest on October-21-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language