Answers for "select all records where the first letter of the city is an a or a c or an s"

SQL
0

select all records where the first letter of the city is an a or a c or an s

SELECT * FROM CUSTOMERS
WHERE City LIKE "[acs]%";
Posted by: Guest on September-13-2021

Code answers related to "select all records where the first letter of the city is an a or a c or an s"

Code answers related to "SQL"

Browse Popular Code Answers by Language