Home > Database > Mysql Tutorial > body text

查看mysql数据库表大小和最后修改时间_MySQL

WBOY
Release: 2016-06-01 13:32:05
Original
1180 people have browsed it

bitsCN.com


查看mysql数据库表大小和最后修改时间

 

查看mysql数据库表相关信息如表大小、修改更新等信息,可以通过以下方式:

 

一   

show table status like ’table_name‘ ;
Copy after login

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

select  *  from information_schema.table  where table_name ='table_name' ;
Copy after login

 


bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template