show table status;//查看所有表状态,通过这个命令可以得知表的创建时间和最后更新时间,以及该表是基表还是视图以及是什么表引擎等信息. show table status from dbname name=tbname;//具体查看某张表的状态.也可以用匹配的方式:show table status like 'student'; show create table tbname//查看表引擎,查看创建表时的语法 show create view viewname//查看创建视图