Which SQL clause is used to specify the columns that should be returned in a query result?
If you want to retrieve only rows where the column 'status' has the value 'active', which clause should you use in your SQL query?
How can you sort query results by the 'created_at' column in descending order?
Which function in SQL returns the number of rows that matches a specified criterion?
To group rows sharing the same values in specific columns, which SQL keyword is used?
Which SQL command changes existing data in a table?
Which type of SQL join returns all records from the left table and the matched records from the right table?
How do you restrict the number of rows returned by a SQL query to 10?
Which SQL statement deletes all rows from a table named 'users'?
Which SQL operator is used to test for empty values in a column?