如何在MySQL中使用SELECT将不可转换的字符删除为ASCII?

让我们首先创建一个表-

mysql> create table DemoTable
(
   Value varchar(100)
);

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable values('€986');
mysql> insert into DemoTable values('§97');

使用select语句显示表中的所有记录-

mysql> select *from DemoTable;

这将产生以下输出-

+--------+
| Value  |
+--------+
| €986   |
| §97
+--------+
2 rows in set (0.00 sec)

以下是将不可转换的字符删除为ASCII的查询-

mysql> select replace(convert(Value using ascii),'?','') from DemoTable;

这将产生以下输出-

+--------------------------------------------+
| replace(convert(Value using ascii),'?','') |
+--------------------------------------------+
| 986                                        |
| 97                                         |
+--------------------------------------------+
2 rows in set (0.00 sec)