I've been searching PHPBuilder and the mySQL docs to no avail.
I'm sure this is pretty simple but I can't figure out how to do this:
I want to select all rows that start with a number (without doing a somewhat long query):
SELECT * FROM table WHERE title LIKE 'n%'
Where 'n' is any number (0-9) and % is of course a wild card. Can anyone shed some light on how to do this properly.