1. 程式人生 > >統計mysql表數量及表記錄數

統計mysql表數量及表記錄數

統計MySQL中某個資料庫中有多少張表
SELECT count(*) TABLES, table_schema FROM information_schema.TABLES   
where table_schema = 'db_production' GROUP BY table_schema; //db_production為資料庫名

統計MySQL中某個資料庫中表記錄數
use information_schema;
select table_name,table_rows from tables where TABLE_SCHEMA = 'pims_ptemp' order by table_rows desc;

where table_schema = 你的資料庫名
--------------------- 
作者:age_of_big_data 
來源:CSDN 
原文:https://blog.csdn.net/age_of_big_data/article/details/70913910 
版權宣告:本文為博主原創文章,轉載請附上博文連結!