MSNCodeSNIPPETS← msncode.dev
snippets/postgres

List Table Sizes

Show all tables and their sizes, largest first

postgressqlsizetables
SQL
SELECT relname, pg_size_pretty(pg_total_relation_size(relid)) FROM pg_catalog.pg_statio_user_tables ORDER BY pg_total_relation_size(relid) DESC;

More postgres snippets

Create User and Database

Create a new PostgreSQL user and database

Describe Table Structure

Show columns, types, and constraints of a table

Export Table to CSV

Export a PostgreSQL table to a CSV file

Find Duplicate Rows

Find rows with duplicate values in a column