Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 163 Bytes

list-tables-with-more-records.md

File metadata and controls

11 lines (10 loc) · 163 Bytes
SELECT
  schemaname,
  relname,
  n_live_tup
FROM
  pg_stat_user_tables
ORDER BY n_live_tup DESC;

Source