您现在的位置: 万盛学电脑网 >> 程序编程 >> 数据库 >> mysql教程 >> 正文

查看mysql数据库表大小和修改时间技巧

作者:佚名    责任编辑:admin    更新时间:2022-06-22

   一 show table status like ’table_name‘ ;

  二 在infortmation_schema下有表table ,存储了表相关信息,也可以通过此表来查询。

  select * from information_schema.table where table_name ='table_name' ;