You have already completed these exercises!
Do you want to take them again?
You completed the POSTGRESQL LIKE Exercises from W3Schools.com
Share on:
Drag and drop the missing code to select all customers that starts with the letter 'A'.
SELECT * FROM customers customer_name ;
'A%'
'%A'
'_A'
=
SELECT
WHERE
LIKE