查看MySQL编码格式指令

来源:互联网 发布:程序员网上接项目 编辑:程序博客网 时间:2024/06/06 01:51

一、查看MySQL数据库服务器和数据库MySQL字符集。

show variables like '%char%';

二、查看MySQL数据表(table)的MySQL字符集。

show table status from databasename like '%tablename%';

三、查看MySQL数据列(column)的MySQL字符集

show full columns from tablename;
0 0
原创粉丝点击