テーブル名を指定して、主キー列とそのデータ型のリストをplpgsql関数から抽出するにはどうすればよいですか?
上記のクエリは本当に遅いので非常に悪いです。
私はこの公式バージョンをお勧めします:
http://wiki.postgresql.org/wiki/Retrieve_primary_key_columns
スキーマが必要な場合、クエリは次のとおりです
SELECT
pg_attribute.attname,
format_type(pg_attribute.atttypid, pg_attribute.atttypmod)
FROM pg_index, pg_class, pg_attribute, pg_namespace
WHERE
pg_class.oid = 'foo'::regclass AND
indrelid = pg_class.oid AND
nspname = 'public' AND
pg_class.relnamespace = pg_namespace.oid AND
pg_attribute.attrelid = pg_class.oid AND
pg_attribute.attnum = any(pg_index.indkey)
AND indisprimary
簡単なSQLを提供するには、主キー列とその型を次のようにリストします。
SELECT c.column_name, c.data_type
FROM information_schema.table_constraints tc
JOIN information_schema.constraint_column_usage AS ccu USING (constraint_schema, constraint_name)
JOIN information_schema.columns AS c ON c.table_schema = tc.constraint_schema
AND tc.table_name = c.table_name AND ccu.column_name = c.column_name
WHERE constraint_type = 'PRIMARY KEY' and tc.table_name = 'mytable';
次のSQL
ステートメントは私にとってはうまくいきます:
SELECT a.attname
FROM pg_index i
JOIN pg_attribute a ON a.attrelid = i.indrelid
AND a.attnum = ANY(i.indkey)
WHERE i.indrelid = 'tablename'::regclass
AND i.indisprimary;
here から直接取得されます。
pg_constraint
システムテーブルをご覧ください。または information_schema.table_constraints
SQL標準に近づきたい場合は表示します。
完全な例については、「-E」オプションを指定してpsql
を使用してDBに接続し、\d <some_table>
と入力してください。テーブルの説明で使用されている実際のクエリが表示されます。
そのために必要なシステムテーブルは2つだけです。
注:システムテーブルはPostgreSQLのバージョン間で変更される可能性がありますが、頻繁には発生しません(実際に発生することはほとんどありません)。そして、information_schema.table_constraintsを使用する場合とは異なり、特別な権限は必要ありません。テーブルを選択するだけです。 (これはPostgres 10.6でテストされました)
SELECT string_agg(a.attname, ', ') AS pk
FROM
pg_constraint AS c
CROSS JOIN LATERAL UNNEST(c.conkey) AS cols(colnum) -- conkey is a list of the columns of the constraint; so we split it into rows so that we can join all column numbers onto their names in pg_attribute
INNER JOIN pg_attribute AS a ON a.attrelid = c.conrelid AND cols.colnum = a.attnum
WHERE
c.contype = 'p' -- p = primary key constraint
AND c.conrelid = '<schemaname>.<tablename>'::REGCLASS; -- regclass will type the name of the object to its internal oid
\d tablename
すべての列、そのタイプ、関連するインデックス、制約、ルール、トリガーなどの他のテーブル関連情報とともに主キー情報を提供します。おそらくすべての情報は必要ありませんが、すべてを取得する最も速い方法です詳細は一目で、詳細は こちら を参照してください。
次のようなものが返されます。
Table "public.tablename"
Column | Type | Modifiers
--------+---------+-----------
col1 | text | not null
col2 | numeric |
col3 | text |
col4 | text |
col5 | numeric |
Indexes:
"tablename_pkey" PRIMARY KEY, btree (col1)
SELECT
conrelid::regclass AS table_from,
conname,
pg_get_constraintdef ( c.oid )
FROM
pg_constraint c
JOIN pg_namespace n ON n.oid = c.connamespace
WHERE
contype IN ( 'f', 'p ' )
AND conrelid::regclass::TEXT IN ( 'foo' )
ORDER BY
conrelid::regclass::TEXT,
contype DESC
列の順序がテーブルの列の順序と異なるインデックスに注意してください。 (つまり、主キーが列3、2、および1を使用した場合)
次のクエリははるかに複雑ですが、列を適切な順序で返します。 ( 'indisprimary'句を削除して、テーブルのすべてのインデックスについて同じ情報を取得します)
WITH ndx_list AS
(
SELECT pg_index.indexrelid
FROM pg_index, pg_class
WHERE pg_class.relname = 'test_indices_table'
AND pg_class.oid = pg_index.indrelid
AND pg_index.indisprimary
), ndx_cols AS
(
SELECT pg_class.relname AS index_name, UNNEST(i.indkey) AS col_ndx, i.indisunique, i.indisprimary
FROM pg_class, pg_index i
WHERE pg_class.oid = i.indexrelid
AND pg_class.oid IN (SELECT indexrelid FROM ndx_list)
)
SELECT ndx_cols.index_name, ndx_cols.indisunique, ndx_cols.indisprimary,
a.attname, format_type(a.atttypid, a.atttypmod), a.attnum
FROM pg_class c, pg_attribute a
JOIN ndx_cols ON (a.attnum = ndx_cols.col_ndx)
WHERE c.oid = 'test_indices_table'::regclass
AND a.attrelid = c.oid
generate_subscripts
を使用して列の順序を保持:
SELECT
a.attname,
format_type(a.atttypid, a.atttypmod)
FROM
pg_attribute a
JOIN (SELECT *, GENERATE_SUBSCRIPTS(indkey, 1) AS indkey_subscript FROM pg_index) AS i
ON
i.indisprimary
AND i.indrelid = a.attrelid
AND a.attnum = i.indkey[i.indkey_subscript]
WHERE
a.attrelid = 'your_table'::regclass
ORDER BY
i.indkey_subscript