Postgres show all databases

From Skytech
Jump to navigation Jump to search


Showing all postgres DB

Coming from mysql I was used to having the SHOW DATABASES

The equivalent in postgresQL is:

select datname from pg_database;