要查詢每張表中的數據數量,可以使用以下SQL語句:
SELECT table_name, COUNT(*) as total_rows
FROM information_schema.tables
WHERE table_schema = 'your_database_name'
GROUP BY table_name;
將 “your_database_name” 替換為你要查詢的數據庫名稱。
這個查詢語句會在 information_schema.tables 表中查找每張表的名稱,并使用 COUNT(*) 函數計算每張表中的行數。最后使用 GROUP BY 子句按照表名稱分組。