如何获取postgresql 9.5中特定模式中存在的所有表的表行数?

时间:2017-06-02 13:27:40

标签: sql postgresql postgresql-9.5

如何获取postgresql 9.5中特定模式中存在的所有表的表行数?我想将结果作为table_name | ROW_COUNT。如何使用查询完成此操作?

2 个答案:

答案 0 :(得分:6)

https://www.postgresql.org/docs/current/static/monitoring-stats.html

  

n_live_tup 估计的有效行数

t=# select relname,n_live_tup 
from pg_stat_all_tables 
where schemaname = 'public' 
order by n_live_tup desc 
limit 3;
        relname       | n_live_tup
------------+---------------------+------------
  x_pricing           |   96493977
  x_forum             |   57696510
  x_uploading         |   55477043
(3 rows)

当然,该数据将达到某种近似水平。要计算确切的数字,你需要动态的plpgsql(btw会给你更接近的数字,但仍然达到一些近似水平)。两种近似值都取决于您更改数据和运行真空的频率......

这种方法的好处当然是消耗的资源(负载和时间)更少。 count(*)的好处是服务器负载和等待时间的更精确结果

答案 1 :(得分:6)

这可以通过一些XML魔术来完成:

select table_schema, table_name,
       (xpath('/row/count/text()', query_to_xml('select count(*) from '||format('%I.%I', table_schema, table_name), true, true, '')))[1]::text::int as row_count
from information_schema.tables
where table_schema = 'public'