回答:
このようなもの:
select tc.table_schema, tc.table_name, kc.column_name
from information_schema.table_constraints tc
join information_schema.key_column_usage kc
on kc.table_name = tc.table_name and kc.table_schema = tc.table_schema and kc.constraint_name = tc.constraint_name
where tc.constraint_type = 'PRIMARY KEY'
and kc.ordinal_position is not null
order by tc.table_schema,
tc.table_name,
kc.position_in_unique_constraint;
tc.constraint_type = 'PRIMARY KEY'
は主キーのみが表示されます。しかし、各プライマリキーがユニークindexeによって支えられて
position_in_unique_constraint
FOREIGNキーの位置を示します。主キーの場合は常にnullです。正しい列はordinal_position
です。PG 9.4でテスト済み。
ordinal_position
と使用する必要があります。position_in_unique_constraint
のみFKSの使用でnullではありません。
これはより正確な答えです:
select tc.table_schema, tc.table_name, kc.column_name
from
information_schema.table_constraints tc,
information_schema.key_column_usage kc
where
tc.constraint_type = 'PRIMARY KEY'
and kc.table_name = tc.table_name and kc.table_schema = tc.table_schema
and kc.constraint_name = tc.constraint_name
order by 1, 2;
and kc.constraint_name = tc.constraint_name
部品を見逃したため、すべての制約がリストされます。
and kc.position_in_unique_constraint is not null
部分です。また、ANSI JOINを使用することを強くお勧めします(多くの場合、これは好みの問題だと考えています)。
これも考慮してください。これにより、すべてのテーブルを変更するスクリプトが生成されます。
SELECT STRING_AGG(FORMAT('ALTER TABLE %s CLUSTER ON %s;', A.table_name, A.constraint_name), E'\n') AS SCRIPT
FROM
(
SELECT FORMAT('%s.%s', table_schema, table_name) AS table_name, constraint_name
FROM information_schema.table_constraints
WHERE UPPER(constraint_type) = 'PRIMARY KEY'
ORDER BY table_name
) AS A;
主キーと外部キーを取得するには、このようにする必要があります。kc.position_in_unique_constraintがnullではない場合、この条件は外部キーのみを取得できます。
select tc.table_schema, tc.table_name, kc.column_name,tc.constraint_type
from
information_schema.table_constraints tc
JOIN information_schema.key_column_usage kc
on kc.table_name = tc.table_name and kc.table_schema = tc.table_schema
and kc.constraint_name = tc.constraint_name
where
--kc.position_in_unique_constraint is not null
order by tc.table_schema,
tc.table_name,
kc.position_in_unique_constraint;