PostgreSQLでDBの一覧を表示する!

PostgreSQLでDBの一覧を表示します。

psqlのコマンドでDBの一覧を表示する!

psqlで「\l」コマンドを使用して、DBの一覧を表示することができます。

$ psql
psql (13.10)
Type "help" for help.

postgres=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
(3 rows)

おわりに

PostgreSQLでDB一覧を表示するには、psqlの「\l」コマンドを使用します。

参考情報

関連記事

参考書籍(Amazon)