MCQs > IT & Programming > MySQL > Consider the 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?

MySQL MCQs

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?

Answer

Correct Answer: DELETE FROM table1 WHERE column1=2 LIMIT 3

Explanation:

Note: This Question is unanswered, help us to find answer for this one

MySQL Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

MySQL Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it