Postgres show all databases

From Skytech
Revision as of 12:15, 16 January 2012 by Martin (talk | contribs) (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…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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;