I am hoping to run a mysql_query where I can select a row if a certain field ends in a number. For example:
You can use LIKE and a wild card expression it should be somthing like
SELECT id FROM table WHERE id REGEX '%0$' SELECT id FROM table WHERE id REGEX '%1$'
and so on.