查看mysql数据库表相关信息如表大小、修改更新等信息,可以通过以下方式:
一 show table status like ’table_name‘ ;
二 在infortmation_schema下有表table ,存储了表相关信息,也可以通过此表来查询。
select * from information_schema.table where table_name ='table_name' ;
查看mysql数据库表相关信息如表大小、修改更新等信息,可以通过以下方式:
一 show table status like ’table_name‘ ;
二 在infortmation_schema下有表table ,存储了表相关信息,也可以通过此表来查询。
select * from information_schema.table where table_name ='table_name' ;