What is the correct syntax for updating a table using LEFT OUTER JOIN?
Correct Answer: UPDATE T1 LEFT JOIN T2 ON T2.ID = T1.ID SET T1.COL1 = NEWVALUE WHERE T2.ID IS NULL
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions