如何在 MySQL 中转换错误编码的数据为 UTF-8?
你需要使用 CONVERT() 函数和二进制关键字。语法如下 −
SELECT CONVERT(binary CONVERT(yourColumnName using latin1) USING UTF8) as anyAliasName FROM yourTableName;
为了理解上述语法,让我们创建一个表。创建表的查询如下 −
mysql> create table UtfDemo -> ( -> Id int NOT NULL AUTO_INCREMENT, -> Name varchar(15), -> PRIMARY KEY(Id) -> ); Query OK, 0 rows affected (0.76 sec)
使用 INSERT 命令在表中插入一些记录。查询如下 −
mysql> insert into UtfDemo(Name) values('Obama’s'); Query OK, 1 row affected (0.28 sec) mysql> insert into UtfDemo(Name) values('John’s'); Query OK, 1 row affected (0.23 sec) mysql> insert into UtfDemo(Name) values('Carol’s'); Query OK, 1 row affected (0.15 sec) mysql> insert into UtfDemo(Name) values('Sam’s'); Query OK, 1 row affected (0.19 sec)
使用 select 语句显示表中的所有记录。查询如下 −
mysql> select *from UtfDemo;
以下是输出结果 −
+----+----------------+ | Id | Name | +----+----------------+ | 1 | Obama’s | | 2 | John’s | | 3 | Carol’s | | 4 | Sam’s | +----+----------------+ 4 rows in set (0.00 sec)
下面是将错误编码的数据转换到 UTF8 的查询 −
mysql> select CONVERT(binary CONVERT(Name using latin1) using utf8) as ListOfName from UtfDemo;
以下是输出结果 −
+------------+ | ListOfName | +------------+ | Obama’s | | John’s | | Carol’s | | Sam’s | +------------+ 4 rows in set, 1 warning (0.00 sec)
广告