Direction: Choose the correct option
Q1.
SELECT * FROM employees ORDER BY salary ASC;What does ASC do?Direction: Choose the correct option
Q2.
SELECT * FROM products ORDER BY price DESC;How will results be sorted?Direction: Choose the correct option
Q3.
SELECT * FROM employees ORDER BY department ASC, salary DESC;How is this sorted?Direction: Choose the correct option
Q4.
SELECT * FROM customers ORDER BY country, name;What is the default sort order?Direction: Choose the correct option
Q5.
SELECT name, salary, salary*12 AS annual FROM employees ORDER BY annual DESC;What is being sorted?