Postgres show all databases
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;
Coming from mysql I was used to having the SHOW DATABASES
The equivalent in postgresQL is:
select datname from pg_database;