Postgres show all databases: Difference between revisions
Jump to navigation
Jump to search
Created page with "Category:Linux = Showing all postgres DB = Coming from mysql I was used to having the <code>SHOW DATABASES</code> The equivalent in postgresQL is: <pre> select datname fro…" |
(No difference)
|
Latest revision as of 12:15, 16 January 2012
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;