PostgreSQLでのデータベース一覧確認方法

2020年12月24日

データベース一覧を表示するメタコマンド

psqlでデータベースへ接続後に¥lでデータベース一覧を表示することができます。

postgres=#\l

List of databases
Name    |  Owner   | Encoding
-----------+----------+----------
postgres  | postgres | UTF8
template0 | postgres | UTF8
template1 | postgres | UTF8
test_db   | postgres | UTF8
(4 rows)

PostgreSQL

Posted by fanfanta