Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given customers table in the sales DB.
customers
SELECT *FROM sales.customersWHERE state LIKE 'CA';
SELECT
*
FROM
sales.customers
WHERE
state LIKE 'CA';
SELECT *FROM sales.customersWHERE state EQUALS 'CA';
state EQUALS 'CA';
SELECT *FROM sales.customersWHERE state = 'CA';
state = 'CA';
SELECT *FROM sales.customersWHERE state BETWEEN 'C' AND 'A';
state BETWEEN 'C' AND 'A';
SELECT *FROM sales.customersWHERE state IN 'CA';
state IN 'CA';
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!