Just to start out, I do not want to use a fulltext search. I do not require one.
I need to know how to make a mysql query that will search a users row I have that searches for the first part of the name. I figured it out for a-z
SELECT * FROM users WHERE username LIKE 'a%'
So using this method or one like how would it get all the users that names start with a 0-9?
Thanks for your time
- Daniel