1. What does SQL stand for?
2. Which SQL command is used to retrieve data from a table?
3. Which clause is used to filter rows before grouping?
4. What does COUNT(*) return?
5. What does this query return? SELECT AVG(salary) FROM employees WHERE department_id = 10;
6. Which symbol is used for a wildcard in SQL LIKE?
7. What is the function of PRIMARY KEY?
8. Which JOIN returns only matching rows from both tables?
9. What does ORDER BY name DESC do?
10. What does GROUP BY do in SQL?