problem with find in set - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:42:49Z http://stackoverflow.com/feeds/question/940107 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940107/problem-with-find-in-set 0 problem with find in set sanders 2009-06-02T15:09:40Z 2009-06-02T15:17:30Z <p>Hello everyone.</p> <p>I get the following error:</p> <blockquote> <p>Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'find_in_set'</p> </blockquote> <p>This is the query I was trying to execute:</p> <p>SELECT ID FROM xs_user_profiles WHERE ID='' AND FIND_IN_SET('1',site_structure);</p> <p>I looked up the properties of this table and it has charset UTF-8 and Collation UTF-8_general_ci.</p> <p>This works well with all my sites so I am not sure what's going wrong.</p> http://stackoverflow.com/questions/940107/problem-with-find-in-set/940147#940147 1 Answer by Quassnoi for problem with find in set Quassnoi 2009-06-02T15:15:26Z 2009-06-02T15:15:26Z <p>If you are using <code>mysqli</code>, issue this command right after connecting:</p> <pre><code>$mysqli-&gt;set_charset("utf8"); </code></pre> <p>This will set your connection encoding to <code>UTF8</code> (same as your table uses).</p> <p>With plain <code>mysql</code>, use this:</p> <pre><code>mysql_query("SET NAMES utf8", $conn); mysql_query("SET CHARACTER SET utf8", $conn); </code></pre> http://stackoverflow.com/questions/940107/problem-with-find-in-set/940159#940159 0 Answer by Todd Gardner for problem with find in set Todd Gardner 2009-06-02T15:17:30Z 2009-06-02T15:17:30Z <p>I'm guessing your string literal ('1') is in a different collation due to different connection variables. See <a href="http://dev.mysql.com/doc/refman/5.0/en/charset-literal.html" rel="nofollow">here</a> </p>