1.指令
show databases; 查看数据库
use student; 使用数据库
show tables; 查看所有表
select * from subject; 查看指定表中内容
explain select * from subject; 分析表
show status like ‘subject‘; 查看表的索引
analyze table student; 分析 储存表的关键字
check table student; 检查错误
optimize table studnet; 优化数据库