Jump to content

Recommended Posts

Hi, I currently have this code that selects all names from the table that begin with the letter 'A', does anybody know how to select all entries from the table that begin with a number?

 

$query = "SELECT * FROM table WHERE name LIKE 'A%'

 

Any help would be very much appreciated.

I am not sure if this works, but I would rather use some regex instead of repeating 10 likes in 1 query.

 

Maybe try this out:

 

$query = "SELECT * FROM table WHERE name REGEXP '^[0-9]'";

 

for some more insight check this out : http://dev.mysql.com/doc/refman/5.0/en/regexp.html

SELECT * FROM table WHERE name REGEXP '^[0-9]' isn't a valid SQL statement.

 

Sure it is. If you received an error you might want to check which version of MySQL you are using. REGEXP was apparently introduced with ver. 5.1. Of course this assumes that you don't literally have a table named "table". If you do,then you need to enclose the table name in backquotes.

SELECT *
FROM `table`
WHERE name REGEXP '^[0-9]'

Just looked again and the reason it returned an error was the closing single quote around the pattern was truncated, so you're right. It was my fault for a bad copy/paste it seems.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.