1.显示表编码:

语法:show create table 表名; 下面测试个表名t1。

> show create table t1;

可以看到这个表的编码是utf8mb4

2.列出当前数据库中所有表。

> show tables;

3.列出当前数据库。

> show databases;

4.进入zabbix数据库。

> use zabbix;

参考: