Jump to content

Recommended Posts

Currently I am using LIKE in a query to find people by name.  But it seems that if I am looking for Tony and put ton it will not find it.  I am using %ton% in the query.  I MUST have a capital T if the name is in the database like that.  Its a mysql database.  How can I make it find it regardless of case sensitivity?

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/221081-php-like-case-sensitive/
Share on other sites

By default mysql is supposed to be case insensitive, not sure why yours would not be.

I'm using MySQL 5.0.51b

I use a multiple select query like below and for all it finds everything.

 

if ($search == "user_begins_characters") {
    $result = mysql_query("SELECT * FROM users WHERE username LIKE '".$search_words."%' ORDER BY $display $order LIMIT $startrow,$posts_per_page" );
$total_count = mysql_query("SELECT * FROM users WHERE username LIKE '".$search_words."%'");
} elseif ($search == "user_contains_characters") {
    $result = mysql_query("SELECT * FROM users WHERE username LIKE '%"."$search_words"."%' ORDER BY $display $order LIMIT $startrow,$posts_per_page" );
$total_count = mysql_query("SELECT * FROM users WHERE username LIKE '%"."$search_words"."%'");

Dang.  It is a Windows server does that matter?  Very confusing. 

It's not -- that's crazy talk.

 

You're using the (default) case-insensitive collation -- that's a good thing.

 

If you want a case-sensitive match, then collate as BINARY. -- see here.

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.