Which SQL keyword is used to retrieve data from a database table? For example, to view all records in a table named 'students'.
In SQL, which clause would you use to specify a condition so that only rows meeting certain criteria are shown? For example, finding all employees with salary greater than 50000.
What clause helps you sort the results of a query in ascending or descending order? For example, arranging product prices from lowest to highest.
If you want both conditions to be true in a SQL query, which operator should you use? For example, retrieving users who are older than 18 AND active.
Which SQL command allows you to change existing values in a table? For example, increasing a user's score by 10 points.