回答:
PostgreSQLでは、システムは、検索するスキーマのリストである検索パスをたどることによってどのテーブルが意味されるかを決定します。
検索パス内の最初に一致するテーブルが必要なテーブルと見なされます。一致しない場合、一致するテーブル名がデータベース内の他のスキーマに存在していても、エラーが発生します。
現在の検索パスを表示するには、次のコマンドを使用できます。
SHOW search_path;
そして、新しいスキーマをパスに入れるには、以下を使用できます。
SET search_path TO myschema;
または、複数のスキーマが必要な場合:
SET search_path TO myschema, public;
リファレンス:https : //www.postgresql.org/docs/current/static/ddl-schemas.html
\l - Display database
\c - Connect to database
\dn - List schemas
\dt - List tables inside public schemas
\dt schema1. - List tables inside particular schemas. For eg: 'schema1'.
このスキーマに関する情報を取得するには、psqlコマンドでピリオド付きのスキーマ名を使用します。
セットアップ:
test=# create schema test_schema;
CREATE SCHEMA
test=# create table test_schema.test_table (id int);
CREATE TABLE
test=# create table test_schema.test_table_2 (id int);
CREATE TABLE
関係のリストを表示test_schema
:
test=# \dt test_schema.
List of relations
Schema | Name | Type | Owner
-------------+--------------+-------+----------
test_schema | test_table | table | postgres
test_schema | test_table_2 | table | postgres
(2 rows)
test_schema.test_table
定義を表示:
test=# \d test_schema.test_table
Table "test_schema.test_table"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
すべてのテーブルを表示test_schema
:
test=# \d test_schema.
Table "test_schema.test_table"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
Table "test_schema.test_table_2"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
等...
これは古いですが、dbに接続するためのエクスポートをエイリアスに入れました。
alias schema_one.con="PGOPTIONS='--search_path=schema_one' psql -h host -U user -d database etc"
そして別のスキーマの場合:
alias schema_two.con="PGOPTIONS='--search_path=schema_two' psql -h host -U user -d database etc"
export
エイリアスのセミコロンは省略します。この方法PGOPTIONS
は、psqlを終了した後は残りません。
SET search_path
すべてのクエリにを追加するよりもはるかに実用的です。ありがとうございました!