Postgres show all databases
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;