Case Sensitive collation in MySQL

MysqlDatabase

Mysql Problem Overview


Is there any Collation type in MySQL which supports Case Sensitive. I had all type of collation in MySQL they all have _ci at the end of their name so they are case Insensitive collation.

Mysql Solutions


Solution 1 - Mysql

According to MySQL Manual http://dev.mysql.com/doc/refman/5.0/en/charset-mysql.html you should be able to set collation to _cs for case sensitivity. You can get a list of _cs collations by executing SHOW COLLATION WHERE COLLATION LIKE "%_cs" query


After a little research:

Apparently there are no utf8_*_cs in MySQL (yet). If you need case sensitive collation for utf8 fields, you should use utf8_bin. This will mess up ORDER BY, but this can be fixed by ORDER BY column COLLATE utf8_general_ci

Source: http://forums.mysql.com/read.php?103,19380,200971#msg-200971 and http://forums.mysql.com/read.php?103,156527,198794#msg-198794

Solution 2 - Mysql

Try a collation ending in _bin, such as latin1_bin or utf8_bin, depending on your character set.

Solution 3 - Mysql

The new version of MySQL (8.0.1 and higher) comes (finally) with a set of utf8mb4_*_0900_as_cs collations.

More about it here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKeyur PadaliaView Question on Stackoverflow
Solution 1 - MysqlGerman RummView Answer on Stackoverflow
Solution 2 - MysqlNeil E. PearsonView Answer on Stackoverflow
Solution 3 - MysqlJaggerView Answer on Stackoverflow