postgres see all databases command code example
Example 1: get all tables postgres
SELECT * FROM pg_catalog.pg_tables;
Example 2: postgresql list db
postgres=# \l
Example 3: postgres how to list all databases
List all databases:
\l
SELECT * FROM pg_catalog.pg_tables;
postgres=# \l
List all databases:
\l