1.显示表编码:
语法:show create table 表名; 下面测试个表名t1。
> show create table t1;
可以看到这个表的编码是utf8mb4
2.列出当前数据库中所有表。
> show tables;
3.列出当前数据库。
> show databases;
4.进入zabbix数据库。
> use zabbix;
参考:
本文共 220 字,大约阅读时间需要 1 分钟。
1.显示表编码:
语法:show create table 表名; 下面测试个表名t1。
> show create table t1;
可以看到这个表的编码是utf8mb4
2.列出当前数据库中所有表。
> show tables;
3.列出当前数据库。
> show databases;
4.进入zabbix数据库。
> use zabbix;
参考:
转载于:https://blog.51cto.com/wutou/1856917