Jump to content

Search database


this.user

Recommended Posts

how do i search a table row, lets say Names for any names that do not start with any letter a-zA-Z?

 

also is LIKE the best use for this type of searhc?

 

This is what you exactly need!!

 

 

$result = mysql_query(" SELECT * FROM table WHERE column NOT REGEXP '^[a-z]'  ") 
					or die(mysql_error()); 

 

If I am not wrong! As far as I tested this is case insensitive match so a-z and A-Z are same!

Link to comment
https://forums.phpfreaks.com/topic/211784-search-database/#findComment-1104773
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.