編碼的世界 / 優質文選 / 歷史

MySQL獲取表行數


2022年6月29日
-   

1.獲取單表的行數
SELECT
COUNT(*)
FROM
table_name;
2.獲取多表的行數(
可以使用
UNION
運算符組合每個
SELECT
語句返回的結果集)
SELECT
'tablename1' tablename,
COUNT(*) rows
FROM
table_name1
UNION
SELECT
'tablename2' tablename,
COUNT(*) rows
FROM
table_name2;

3.獲取某個數據庫的所有表的行數(information_schema 方法有時候不准確)
use information_schema;
select table_name,table_rows from tables
where TABLE_SCHEMA = 'db.name'
order by table_rows desc;

熱門文章