Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am getting the below error when trying to do a select through a Stored procedure in mysql.

Illegal mix of collations (latin1_general_cs,IMPLICIT) and (latin1_general_ci,IMPLICIT) for operation '='

Any idea on what might be going wrong here?

The collation of the table is latin1_general_ci and that of the column in the where clause is latin1_general_cs

Thanks!

share|improve this question

6 Answers

This is generally caused by comparing two strings of incompatible collation or by attempting to select data of different collation into a combined column.

The clause COLLATE allows you to specify the collation used in the query.

For example, the following WHERE clause will always give the error you posted:

WHERE 'A' COLLATE latin1_general_ci = 'A' COLLATE latin1_general_cs

Your solution is to specify a shared collation for the two columns within the query. Here are some example uses of the COLLATE clause:

SELECT * COLLATE latin1_general_ci FROM table ORDER BY key;

SELECT * FROM table ORDER BY key COLLATE latin1_general_ci;

Another option is to use the BINARY operator which is simply a shorthand version of COLLATE. Your solution might look something like this:

SELECT * FROM table WHERE BINARY a = BINARY b;

Or,

SELECT * FROM table ORDER BY BINARY a;
share|improve this answer
Thanks. Actually it seems to be behaving pretty weird in my case. When I run the query as it is, via the query browser, it fetches me the results. But using a stored procedure throws up an error. – user355562 Jun 13 '10 at 6:21
Interesting. Thanks for the added details, I'll see if I can't find some further info. – defines Jun 13 '10 at 15:53
Binary seemed to be the best solution for me. It might be the best for you as well if you aren't using any tricky filters. – Adam Sack Oct 1 '12 at 16:02

Adding my 2c to the discussion for future googlers.

I was investigating a similar issue where I got the following error when using custom functions that recieved a varchar parameter:

Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and 
(utf8_general_ci,IMPLICIT) for operation '='

Using the following query:

mysql> show variables like "collation_database";
    +--------------------+-----------------+
    | Variable_name      | Value           |
    +--------------------+-----------------+
    | collation_database | utf8_general_ci |
    +--------------------+-----------------+

I was able to tell that the DB was using utf8_general_ci, while the tables were defined using utf8_unicode_ci:

mysql> show table status;
    +--------------+-----------------+
    | Name         | Collation       |
    +--------------+-----------------+
    | my_view      | NULL            |
    | my_table     | utf8_unicode_ci |
    ...

Notice that the views have NULL collation. It appears that views and functions have collation definitions even though this query shows null for one view. The collation used is the DB collation that was defined when the view/function were created.

The sad solution was to both change the db collation and recreate the views/functions to force them to use the current collation.

  • Changing the db's collation:

    ALTER DATABASE mydb DEFAULT COLLATE utf8_unicode_ci;
    

I hope this will help someone.

share|improve this answer
1  
The collation may also be set at the column level. You can view it with: show full columns from my_table; – Jonathan Tran Sep 19 '12 at 15:48

MySQL really dislikes mixing collations unless it can coerce them to the same one (which clearly is not feasible in your case). Can't you just force the same collation to be used via a COLLATE clause? (or the simpler BINARY shortcut if applicable...).

share|improve this answer

Sometime it can be too dangerous to convert char set specially database with huge set of date. I think a best option is use "binary" operate

e.g : WHERE binary table1.colomn1 = binary table2.colomn1

share|improve this answer

You can try this script, that converts all of your databases and tables to utf8.

share|improve this answer

I used ALTER DATABASE mydb DEFAULT COLLATE utf8_unicode_ci;, but didn't work.

In this query:

Select * from table1, table2 where table1.field = date_format(table2.field,'%H');

This work for me:

Select * from table1, table2 where concat(table1.field) = date_format(table2.field,'%H');

Yes, only a concat.

share|improve this answer
Check the collation of your tables and their columns (show table status; and show full columns from table1;). Using alter database wouldn't work if the tables are already created with the wrong collation. – Ariel T Jan 30 at 18:26
ALTER DATABASE mydb DEFAULT COLLATE ... worked for me, so upvote. Maybe I had an advantage since I could drop and recreate the database and load from backups. – tobixen Feb 14 at 8:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.