PostgreSQLでのデータベース一覧確認方法
データベース一覧を表示するメタコマンド
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)