查看mysql数据库表大小和修改时间技巧
时间:2016-05-07 14:43 来源:linux.it.net.cn 作者:IT
一 show table status like ’table_name‘ ;
二 在infortmation_schema下有表table ,存储了表相关信息,也可以通过此表来查询。
select * from information_schema.table where table_name ='table_name' ;
(责任编辑:IT)
一 show table status like ’table_name‘ ; 二 在infortmation_schema下有表table ,存储了表相关信息,也可以通过此表来查询。 select * from information_schema.table where table_name ='table_name' ; (责任编辑:IT) |