postgresqlHow do I list all databases in PostgreSQL?
To list all databases in PostgreSQL, you can run the following command:
\l
This will return a list of all databases available in the PostgreSQL server. The output will look something like this:
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+------------+------------+-----------------------
postgres | postgres | UTF8 | en_US.utf8 | en_US.utf8 |
template0 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
| | | | | postgres=CTc/postgres
(3 rows)
The command \l is an alias for the \list command. This command can take an optional parameter pattern to filter the list of databases by name. For example, to list only databases that start with the letter a, you can use the following command:
\l a%
This will output only the databases that start with the letter a.
For more information, please refer to the PostgreSQL Documentation.
More of Postgresql
- How can I use PostgreSQL and ZFS snapshots together?
- How do I use PostgreSQL ZonedDateTime to store date and time information?
- How do I use PostgreSQL and ZFS together?
- How do I use PostgreSQL variables in my software development project?
- How do I use PostgreSQL UNION to combine the results of two queries?
- How can I monitor PostgreSQL performance using Zabbix?
- How can I integrate PostgreSQL with Yii2?
- How can I set a PostgreSQL interval to zero?
- How do I use PostgreSQL's XMLTABLE to parse XML data?
- How can I use PostgreSQL with Zabbix?
See more codes...