Direction: Choose the correct option
Q1.
SELECT * FROM employees LIMIT 5;What will this query return?Direction: Choose the correct option
Q2.
SELECT * FROM employees LIMIT 5 OFFSET 5;What does OFFSET 5 do?Direction: Choose the correct option
Q3.
SELECT * FROM employees ORDER BY salary DESC LIMIT 3;What will this return?Direction: Choose the correct option
Q4.
SELECT * FROM employees ORDER BY salary DESC LIMIT 3,3;In MySQL, what does LIMIT 3,3 mean?Direction: Choose the correct option
Q5.
SELECT * FROM employees WHERE department = 'IT' LIMIT 3;What does this query do?