Table CUSTOMER has all customers, and it has a column LASTNAME for the Customer's last name. What statement below would return all customers whose last name begins with 'EST'?
SELECT *
FROM CUSTOMER
WHERE LASTNAME LIKE 'EST%'
SELECT *
FROM CUSTOMER
WHERE LASTNAME = 'EST%'
SELECT *
FROM CUSTOMER
WHERE LASTNAME = 'EST'
SELECT *
FROM CUSTOMER
WHERE LASTNAME = 'EST'
OR LASTNAME = 'ESTA'
Answer:
SELECT *
FROM CUSTOMER
WHERE LASTNAME LIKE 'EST%'
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!