Q. What is x in the following MySQL statement?
DELETE FROM x USING x LEFT JOIN y ON x.col = y.col;
β
Correct Answer: (B)
table name
Explanation: This MySQL statement is used to delete rows from a table. Let's break it down: