Complete the code to select all columns from the table named employees.
SELECT [1] FROM employees;Using * selects all columns from the table.
Complete the code to select all columns from the table named products.
SELECT [1] FROM products;The * symbol selects all columns in SQL.
Fix the error in the code to select all columns from the table orders.
SELECT [1] FROM orders;The correct way to select all columns is using *.
Fill both blanks to select all columns from the table customers and order the results by the customer_id column.
SELECT [1] FROM customers ORDER BY [2];
* selects all columns, and customer_id is the column to order by.
Fill all three blanks to select all columns from the table sales where the region is 'East' and order the results by the sale_date column.
SELECT [1] FROM sales WHERE [2] = 'East' ORDER BY [3];
* selects all columns, region is the filter column, and sale_date is the column to order by.