Which of the following is a valid SQL query to retrieve all columns from the 'employees' table?
Q1. Which of the following is a valid SQL query to retrieve all columns from the 'employees' table?
Answer: SELECT * FROM employees
Explanation: The SQL query 'SELECT * FROM employees' retrieves all columns from the employees table, using the '*' wildcard to represent all columns.