私は次のエラーを取得する:操作 'FIND_IN_SET' の不正な照合順序のミックス(latin1_swedish_ci、強制可能)および(utf8_general_ci、IMPLICIT)
Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'find_in_set'
これは私が実行しようとしていたクエリです:
SELECT ID FROM xs_user_profiles WHERE ID='' AND FIND_IN_SET('1',site_structure);
私はこのテーブルのプロパティを参照し、charset utf8と照合utf8_general_ciを持っています。
これは私のすべてのサイトでうまくいくので、何がうまくいかないのか分かりません。
「[mysqlの不正な組み合わせの照合」のトラブルシューティング]の可能な複製(http://stackoverflow.com/questions/3029321/troubleshooting-illegal-mix-of-collations-error-in-mysql) – Jocelyn