Which SQL statement is used to retrieve data from a database table, for example, finding the list of all employees in a company?
If you want to return all rows from the left table and only the matching rows from the right table, which type of join should you use in SQL?
What keyword completes a SQL query that counts the total number of records in a table, such as 'SELECT COUNT(*) FROM students;'?
Which SQL clause is used to filter records in a SELECT query, for example, showing only customers from a specific city?
Suppose you want to change a user's email address in a table. Which SQL statement is typically used for this purpose?
What clause should be used to sort the results of a SELECT statement in ascending or descending order, such as alphabetical order of last names?
Which SQL clause groups rows that have the same values into summary rows, such as the total number of orders by each customer?
What is the name for a field or set of fields in a table that uniquely identifies each row, such as a student ID in a student records table?
Which function would you use to find the average score in a 'grades' column of a database table?
If you wish to delete one or more rows from a table where a certain condition is met, which SQL command should you use?