Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Her's my probleme, i guess its really basic.

I'm trying to lookup in the database if a line does exist. heres my code :

$req="SELECT * FROM INSTITUTS WHERE inst_name='$fc_inst'";
$result=mysql_query($req) or die ('Erreur :'.mysql_error());
if (mysql_num_rows($result)){
echo '  name exist';
}
else {
echo '  does not exist.';
}

Probleme is, when imm looking for "test", it says does not exist, even if i have "Test" in my database.

share|improve this question
1  
MySQL's queries are case insensitive by default, unless the underlying tables have a case-sensitive collation set. – Marc B May 9 '11 at 15:04

6 Answers

up vote 3 down vote accepted

you can use LIKE:

WHERE foo LIKE 'bar'

Or you can cast both lowercase with:

WHERE LOWER(foo) = LOWER("bar")

The example with LOWER() is most effective where you know that all of your data in the database is already lower cased and then you can just execute:

WHERE foo = LOWER("bar")

This would be a cheaper comparison than the LIKE if you can lower case all of the data in your database.

share|improve this answer
i am sure in some areas, some info has to be uppercase or mixed case and cannot be all lowercase – Neal May 9 '11 at 14:22

Try using LIKE instead of =:

$req="SELECT * FROM INSTITUTS WHERE `inst_name` LIKE '$fc_inst'";
share|improve this answer
This will work ?, he should not use Lower() in statement and strtolower() in PHP code ? – Vash May 9 '11 at 14:13
@Vash, is that a question or statement? – Neal May 9 '11 at 14:13
That should be the question. – Vash May 9 '11 at 14:16
@Vash...... huh? – Neal May 9 '11 at 14:18
1  
MySQL is generally case insensitive within LIKE queries unless you go out of your way to make it not the case. – stevecomrie May 9 '11 at 14:19
show 3 more comments

It could also be a problem with your table COLLATE setting

This CREATE statement will force your select queries to be case sensitive even when using LIKE operators:

CREATE
  table instituts (inst_name VARCHAR(64))
  CHARACTER SET latin1 COLLATE latin1_general_cs;

Whereas this one will ensure case-insensitivity:

CREATE
  table instituts (inst_name VARCHAR(64))
  CHARACTER SET latin1
share|improve this answer
1  
This is possibly the most sensible answer. – Álvaro G. Vicario May 10 '11 at 10:53

you can solve it using "LIKE" as other people told you, BUT it is important to know that the case sensitivity is determined by the collation in the database. For example if you select a collation utf8_general_ci... that "ci" at the end means "case insensitive" so the comparisons you do in the future will be case insensitive.

In a few words: you have to be careful about the collation you select.

share|improve this answer

You can use a MD5() comparison if you want a case sensitive select:

$req="SELECT * FROM INSTITUTS WHERE MD5(inst_name)=MD5('$fc_inst')";

of course you consume a little bit of the server's cpu but it's rather simpler than those boring collations.

share|improve this answer
"a little bit of the server's cpu" can mean a few hours of CPU if the table is big and the query is frequently run. – ypercube Aug 13 '11 at 21:25
;-) yes of course !! – Yann Saint-Dizier Aug 16 '11 at 11:52

Try:

$req="SELECT * FROM INSTITUTS WHERE UCASE(inst_name)=UCASE('$fc_inst')";
$result=mysql_query($req) or die ('Erreur :'.mysql_error());
if (mysql_num_rows($result)){
echo '  name exist';
}
else {
echo '  does not exist.';
}
share|improve this answer
Thank you all. I appreciate – Clément May 9 '11 at 14:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.