PostgreSQL アクセスするデータベースを指定する

PostgreSQLターミナルにて、アクセスするデータベースを指定するには\cを使います。

postgres=# \c データベース名

sample_dbデータベースを指定するなら次のようになります。

postgres=# \c sample_db
You are now connected to database "sample_db" as user "postgres".