Complete the code to select all columns from the table named 'users'.
SELECT [1] FROM users;The asterisk (*) means to select all columns from the table.
Complete the code to find the names of all customers from the 'customers' table.
SELECT [1] FROM customers;We want to get the 'name' column from the customers table.
Fix the error in the code to select all records from the 'orders' table.
SELECT [1] orders;The keyword FROM is needed to specify the table to select from.
Fill both blanks to select the 'email' column from the 'subscribers' table where the status is 'active'.
SELECT [1] FROM subscribers WHERE status [2] 'active';
Select the 'email' column and use '=' to filter rows where status is 'active'.
Fill all three blanks to select the 'product' and 'price' columns from 'inventory' where quantity is greater than 10.
SELECT [1], [2] FROM inventory WHERE quantity [3] 10;
Select 'product' and 'price' columns and filter rows where quantity is greater than 10 using '>'.