Mysql 行数计数 (*) 与 information_schema 中的 table.table_rows 不一致
Mysql inconsistent number of rows count(*) vs table.table_rows in information_schema
我遇到了一个奇怪的现象,希望有人能给我解释一下:
我有一些 "static" 表(它们每天更改一次)。
mysql> select 'appObjectGroups' as tbl, count(*) as num from appObjectGroups
union select 'appObjectDependencies' as tbl, count(*) as num from appObjectDependencies
union select 'appObjectUrls' as tbl, count(*) as num from appObjectUrls
union select 'appObjectValues' as tbl, count(*) as num from appObjectValues
union select 'appObjects;' as tbl, count(*) as num from appObjects;
+-------------------------+------+
| tbl | num |
+-------------------------+------+
| appObjectGroups | 1149 |
| appObjectDependencies | 6885 |
| appObjectUrls | 1162 |
| appObjectValues | 3795 |
| appObjects; | 5409 |
+-------------------------+------+
5 rows in set (0.00 sec)
mysql> select table_name as tbl, table_rows as num from information_schema.tables where table_schema='mySchema' and table_name like 'app%';
+-------------------------+------+
| tbl | num |
+-------------------------+------+
| appObjectGroups | 1141 |
| appObjectDependencies | 6153 |
| appObjectUrls | 1141 |
| appObjectValues | 3584 |
| appObjects | 6061 |
+-------------------------+------+
5 rows in set (0.01 sec)
为什么 table_rows
报告的内容与 count(*)
不同?
对我来说更重要的是:哪一个是正确的? :-)
引用自documentation:
For InnoDB tables, the row count is only a rough estimate used in SQL
optimization. (This is also true if the InnoDB table is partitioned.)
我遇到了一个奇怪的现象,希望有人能给我解释一下:
我有一些 "static" 表(它们每天更改一次)。
mysql> select 'appObjectGroups' as tbl, count(*) as num from appObjectGroups
union select 'appObjectDependencies' as tbl, count(*) as num from appObjectDependencies
union select 'appObjectUrls' as tbl, count(*) as num from appObjectUrls
union select 'appObjectValues' as tbl, count(*) as num from appObjectValues
union select 'appObjects;' as tbl, count(*) as num from appObjects;
+-------------------------+------+
| tbl | num |
+-------------------------+------+
| appObjectGroups | 1149 |
| appObjectDependencies | 6885 |
| appObjectUrls | 1162 |
| appObjectValues | 3795 |
| appObjects; | 5409 |
+-------------------------+------+
5 rows in set (0.00 sec)
mysql> select table_name as tbl, table_rows as num from information_schema.tables where table_schema='mySchema' and table_name like 'app%';
+-------------------------+------+
| tbl | num |
+-------------------------+------+
| appObjectGroups | 1141 |
| appObjectDependencies | 6153 |
| appObjectUrls | 1141 |
| appObjectValues | 3584 |
| appObjects | 6061 |
+-------------------------+------+
5 rows in set (0.01 sec)
为什么 table_rows
报告的内容与 count(*)
不同?
对我来说更重要的是:哪一个是正确的? :-)
引用自documentation:
For InnoDB tables, the row count is only a rough estimate used in SQL optimization. (This is also true if the InnoDB table is partitioned.)