Jump to content

Case Sensitive QUERY


johnrb87

Recommended Posts

Hi

 

I have a database table which holds the names of people, some names require ascents and special characters, so we have stored the data as VARBINARY and with NO "Collation" as this seems to work the best at storing the original data.

 

I then do a QUERY like

 

SELECT * FROM `names` WHERE `surname` = 'Zams'

 

and it works and I get 8 results back

 

If I then do a QUERY like

 

SELECT * FROM `names` WHERE `surname` = 'zams'

 

and switch the keyword to lowercase (zams), then the QUERY comes back and fails

 

I have been told to put

 

COLLATE SQL_Latin1_General_CP1_CI_AS

 

just before

 

= 'zams'

 

but that doesn't work and comes back with problems

 

can anyone help?

 

thanks

Link to comment
https://forums.phpfreaks.com/topic/236762-case-sensitive-query/
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.