TECHIES WORLD

For Techs.... Techniques.... Technologies....

BashCpanelLinux

How to list out the databases in PostgreSQL

We can use the following PostgreSQL query to list out the databases.

postgres=# \l

If we requires more detailed information, can use the following query.

postgres=# \l+

That's all…

Leave a Reply