I want to run a mysql query to give me all available results that start with a number.
SELECT * FROM users WHERE username LIKE number + '%'
I tried using
LIKE REGEXP '^[0-9]
but it is not working for me
Your RegExp is wrong, and the way you are using the REGEXP operator is wrong. Your code should be
WHERE username REGEXP '^[0-9].*'
Edit: I'm wrong about the RegEx portion. I didn't realize you don't need the .*