1、显示表中所有列的详细信息
show full columns table_name;
2、查看服务器版本
show version();
3、查看当前登录用户
select current_user();
4、显示表的详细信息
show table status like;
5、显示进程数
show progresslist;
6、显示索引
show index from table_name;
7、查看执行计划
explain 查询语句;
8、查询区分度(字段在数据库的不重复比)
select count(distinct(name))/count(*) from table_name;