Complete the code to select all columns from the table named 'employees'.
SELECT [1] FROM employees;The asterisk (*) means to select all columns from the table.
Complete the code to select only the 'name' column from the 'employees' table.
SELECT [1] FROM employees;Use the exact column name 'name' to select that column.
Fix the error in the code to select the 'age' column from 'employees'.
SELECT [1] FROM employees;Do not put a semicolon inside the SELECT clause. The semicolon ends the statement.
Fill both blanks to select the 'salary' column from 'employees' where salary is greater than 50000.
SELECT [1] FROM employees WHERE salary [2] 50000;
Select the 'salary' column and use '>' to filter salaries greater than 50000.
Fill all three blanks to select 'name' and 'age' from 'employees' where age is less than 30.
SELECT [1], [2] FROM employees WHERE age [3] 30;
Select 'name' and 'age' columns and filter rows where age is less than 30 using '<'.