Postgres show all databases

From Skytech
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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;