List All The Databases
March 6, 2016 ยท View on GitHub
There are two ways to list all the available databases. The first is a
psql only command:
\list
The second approach is to query the pg_database table. Something like the
following will suffice:
select datname from pg_database;