I'm using MySQL and I'm trying to return values of CustomerLastName that starts with M, and I know there are some in the database, but they are not being returned. I see CustomerLastName and CustomerFirstName but no names.
SELECT 'CustomerFirstName', 'CustomerLastName'
FROM customer
WHERE LEFT(CustomerLastName, 1 = 'M ');