Answers for "join tables and update sql"

SQL
0

joins in update query

update a
join b 
on a.a_id=b.b_id 
set b.is_active = 1 
where ....;
Posted by: Guest on January-20-2021
-2

SQL update with join

UPDATE D
SET D.Name = 'Computer Science and Engineering'
FROM Department D
INNER JOIN Student S ON D.Id = S.DepartmentId
Posted by: Guest on July-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language