How do you select a all numbers in a LIKE PHP/MySQL Query?

This is a bit difficult but trying to figure out how to pull results based on numbers 0 - 9 by first numbers.

LIKE '1%'

That one works but I need to pull 0 - 9 not just 1 so how would I do that?

I tried LIKE '#%' but that doesn't work. Any ideas? Or do I need to do something like LIKE '0%' OR '1%' OR '2%' OR '3%' ....
 
Back
Top