Consider the following select statement and its output:
SELECT * FROM table1 ORDER BY column1;
Column1
--------
1 2 2 2 2 2 3
Given the above output, which one of the following commands deletes 3 of the 5 rows where column1 equals 2?
Correct Answer: DELETE FROM table1 WHERE column1=2 LIMIT 3
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions