How to change the connection collation of Mysql

2020-06-11 06:59发布

How can I change connection collation of mysql database?

I am using Mysql workbench 5.5 and mysql 5.5 in ubuntu 14.

When I execute a stored procedure, an error occurs:

Error Code: 1267. Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='

I have search though the internet, which has a temp solution that is to amend

COLLATE utf8_unicode_ci;

in the stored procedure.

But I want to fix this problem for all stored procedures in the future. I have found

SHOW VARIABLES LIKE 'collation%';

which return this.

collation_connection    utf8_general_ci
collation_database  utf8_unicode_ci
collation_server    latin1_swedish_ci

how can I change utf8_general_ci to utf8_unicode_ci?

2条回答
戒情不戒烟
2楼-- · 2020-06-11 07:39

Firstly, I think the error message is because of the collation of stored procedure (connection) doesn't match the table. But I was wrong, the reason for the error is because of the collation of the column doesn't match the collation of the table.

I want to change to collation of column to 'utf8_unicode_ci' in my case. So I have run this statement:

alter table <YourTableName> 
    MODIFY <YourColumnName> VARCHAR(XXX) COLLATE 'utf8_unicode_ci';

Please be aware that change of collation may result in data loss. For me, General -> Unicode, with all English in varchar column. There is none.

Further reading: http://dev.mysql.com/doc/refman/5.7/en/charset-column.html

http://dev.mysql.com/doc/refman/5.7/en/charset-connection.html

http://dev.mysql.com/doc/refman/5.7/en/charset-database.html

查看更多
萌系小妹纸
3楼-- · 2020-06-11 07:51

Look into your my.cnf, find the contents below near collation_server:

[mysqld]
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server=utf8
collation-server=utf8_unicode_ci 
skip-character-set-client-handshake

Then change your collation variables to:

collation_connection    utf8_unicode_ci
collation_server        latin1_swedish_ci

Remember to restart MySQL server service.

For DB collation, you can use the following SQL:

ALTER DATABASE <database_name> CHARACTER SET utf8 COLLATE utf8_unicode_ci;

or you can do it at Alter database screen in MySQL Workbench (always update this to the latest version!)

查看更多
登录 后发表回答