指令(MySQL)

    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;   优化数据库

 

指令(MySQL)

上一篇:[ORACLE]获取当前会话的跟踪文件路径


下一篇:数据库的约束条件与表关系