problem with find in set - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:42:49Zhttp://stackoverflow.com/feeds/question/940107http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940107/problem-with-find-in-set0problem with find in setsanders2009-06-02T15:09:40Z2009-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#9401471Answer by Quassnoi for problem with find in setQuassnoi2009-06-02T15:15:26Z2009-06-02T15:15:26Z<p>If you are using <code>mysqli</code>, issue this command right after connecting:</p>
<pre><code>$mysqli->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#9401590Answer by Todd Gardner for problem with find in setTodd Gardner2009-06-02T15:17:30Z2009-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>