-- 也可以使用information_schema中的tables表来查询每个数据库中所包含的表,包含了表的行数、占用内存等信息 select * from information_schema.tables where table_schema = 'school';
查看其他数据库的表
1 2
# test是数据库名 show tables from test;
查看表结构
1 2 3 4 5
# 注意:user是表名 desc user;
-- 也可以使用information_schema中的columns表来查询表中所包含的列名、数据类型等信息 select * from information_schema.columns where table_schema = 'school' and table_name = 'teacher';
查看索引列
1
showindexfrom <表名>
查看MySQL版本
1
select version();
查看当前日期
1
selectnow();
查看当前用户
1
selectuser();
查看数据库编码格式
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
-- show variables默认是session,可以指定查global showvariableslike'character_set_%'; showglobalvariableslike'character_set_%'; showsessionvariableslike'character_set_%';