SELECT * FROM tablename WHERE number='1' or number='2' or number='3' or number='4'
This would return a match if the number field contained single digits. You may want to use LIKE '%1%' or LIKE '%2%' etc. if you want a match where the number field contains the number along with other characters.
or of course you can use the pipe symbol instead of "or".