How would I select all records where the name column starts with a number for example a table with the following:

303main
ad
jack
435 man
44 something

The query would select:

303main
435 man
44 something

because they start with a number. Any query that will do this? Thanks.