SELECT *
FROM `friends_test`
WHERE `friend1_id` = '10'
AND `friend2_name` LIKE 'a%'
LIMIT 10;
I'm using a query like the one above to pull a user's friends that begins with any letter a-z. Some users have names that look like "♥ Liz ♥".
How can we query mysql to pull any name that does NOT begin with a-z?