如何在不使用 count(*) 的情况下在 greenplum 中查找 table 中的行数
How to find the number of rows in a table in greenplum without using count(*)
Select count(*) from table;
执行需要太多时间我想要来自任何系统table的table中的行数table。
您可以尝试下面的查询来获取大概的行数。
select reltuples from pg_class WHERE relname = 'table1';
Select count(*) from table;
执行需要太多时间我想要来自任何系统table的table中的行数table。
您可以尝试下面的查询来获取大概的行数。
select reltuples from pg_class WHERE relname = 'table1';