Skip to content

Instantly share code, notes, and snippets.

@gadgetmies
Created April 17, 2024 09:42
Show Gist options
  • Save gadgetmies/b2b0c601025fa270c2f832bc37b8a80c to your computer and use it in GitHub Desktop.
Save gadgetmies/b2b0c601025fa270c2f832bc37b8a80c to your computer and use it in GitHub Desktop.
Check table row count in PostgreSQL
SELECT
nspname AS schemaname,relname,reltuples
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE
nspname NOT IN ('pg_catalog', 'information_schema') AND
relkind='r'
ORDER BY reltuples DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment