What is the best collation to use for MySQL (with PHP) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:29:21Z http://stackoverflow.com/feeds/question/367711 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php 3 What is the best collation to use for MySQL (with PHP) Darryl Hein 2008-12-15T07:48:36Z 2008-12-15T08:04:36Z <p>I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as MySQL, Apache, the HTML and anything inside PHP.</p> <p>In the past I have set PHP to output in "UTF-8", but which collation does this match in MySQL? I'm thinking it's one of the UTF-8 ones, but I have used utf8_unicode_ci, utf8_general_ci, and utf8_bin before.</p> http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php/367721#367721 1 Answer by mepcotterell for What is the best collation to use for MySQL (with PHP) mepcotterell 2008-12-15T07:55:17Z 2008-12-15T07:55:17Z <p>For UTF-8 textual information, you should use <code>utf8_general_ci</code> because...</p> <ul> <li><p><code>utf8_bin</code>: compare strings by the binary value of each character in the string</p></li> <li><p><code>utf8_general_ci</code>: compare strings using general language rules and using case-insensitive comparisons</p></li> </ul> <p>a.k.a. it will should making searching and indexing the data faster/more efficient/more useful.</p> http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php/367725#367725 6 Answer by Eran Galperin for What is the best collation to use for MySQL (with PHP) Eran Galperin 2008-12-15T07:58:27Z 2008-12-15T07:58:27Z <p>The main difference is sorting accuracy (when comparing characters in the language) and performance. The only special one is utf8_bin which is for comparing characters in binary format.</p> <p>utf8_general_ci is somewhat faster than utf8_unicode_ci, but less accurate (for sorting). The specific language utf8 encoding (such as utf8_swedish_ci) contain additional language rules that make them the most accurate to sort for those languages. Most of the time I use utf8_unicode_ci (I prefer accuracy to small performance improvements), unless I have a good reason to prefer a specific language.</p> <p>You can read more on specific unicode character sets on the MySQL manual - <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-unicode-sets.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/charset-unicode-sets.html</a></p> http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php/367731#367731 1 Answer by Vegard Larsen for What is the best collation to use for MySQL (with PHP) Vegard Larsen 2008-12-15T08:02:37Z 2008-12-15T08:02:37Z <p>Actually, you probably want to use utf8_unicode_ci or utf8_general_ci.</p> <ul> <li>utf8_general_ci sorts by stripping away all accents and sorting as if it were ASCII</li> <li>utf8_unicode_ci uses the Unicode sort order, so it sorts correctly in more languages</li> </ul> <p>However, if you are only using this to store english text, these shouldn't differ.</p> http://stackoverflow.com/questions/367711/what-is-the-best-collation-to-use-for-mysql-with-php/367735#367735 4 Answer by Tomalak for What is the best collation to use for MySQL (with PHP) Tomalak 2008-12-15T08:04:36Z 2008-12-15T08:04:36Z <p>Collations affect how data is sorted and how strings are compared to each other. That means you should use the collation that most of your users expect.</p> <p>Example from the <a href="http://mysql.mirrors-r-us.net/doc/refman/5.1/en/charset-unicode-sets.html" rel="nofollow">documentation</a>:</p> <blockquote> <p><code>utf8_general_ci</code> also is satisfactory for both German and French, except that ‘ß’ is equal to ‘s’, and not to ‘ss’. If this is acceptable for your application, then you should use <code>utf8_general_ci</code> because it is faster. Otherwise, use <code>utf8_unicode_ci</code> because it is more accurate.</p> </blockquote> <p>So - it depends on your expected user base and on how much you need <em>correct</em> sorting. For an English user base, <code>utf8_general_ci</code> should suffice, for other languages, like Swedish, special collations have been created.</p>