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 regular expressions if you need to find if field is ending in a number or not as follows
SELECT id FROM table WHERE id REGEXP '[0-9]$'
Hope it helps...