Select all records where the value of the City
column does NOT start with the letter "a".
SELECT * FROM Customers
@(24);
SELECT * FROM Customers
WHERE City NOT LIKE 'a%';
SELECT * FROM Customers
WHERE City NOT LIKE "a%";
SELECT * FROM Customers
WHERE NOT City LIKE 'a%';
SELECT * FROM Customers
WHERE NOT City LIKE "a%";