什么是(默认的)字符集:
MySQL数据库 MySQL表 MySQL列
什么是(默认的)字符集:
MySQL数据库 MySQL表 MySQL列
当前回答
数据库:
USE your_database_name;
show variables like "character_set_database";
-- or:
-- show variables like "collation_database";
参考本页。查阅MySQL手册
其他回答
我总是看SHOW CREATE TABLE mydatabase。mytable。
对于数据库,似乎需要查看SELECT DEFAULT_CHARACTER_SET_NAME FROM information_schema.SCHEMATA。
数据库: 使用db_name;选择@@character_set_database;
数据库:
USE your_database_name;
show variables like "character_set_database";
-- or:
-- show variables like "collation_database";
参考本页。查阅MySQL手册
表:
SHOW TABLE STATUS将列出所有的表。
使用过滤:
SHOW TABLE STATUS where name like 'table_123';
对于表和列:
show create table your_table_name