
↓ 基本形。DELIMITER
select string_agg(quote_ident(attname),'DELIMITER' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass('[SCHEMA_NAME.]TABLE_NAME' );
↓ 使用例。一つ目がカンマ区切り、二つ目が改行で区切り。
select string_agg(quote_ident(attname),',' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass('pg_tables' ); +----------------------------------------------------------------------------------------+ | string_agg | +----------------------------------------------------------------------------------------+ | schemaname,tablename,tableowner,tablespace,hasindexes,hasrules,hastriggers,rowsecurity | +----------------------------------------------------------------------------------------+ (1 row) select string_agg(quote_ident(attname),e'\n' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass('pg_tables' ); +-------------+ | string_agg | +-------------+ | schemaname +| | tablename +| | tableowner +| | tablespace +| | hasindexes +| | hasrules +| | hastriggers+| | rowsecurity | +-------------+ (1 row)

列名に
例えば列数が多いテーブル/ビューで、全部に近い列をクエリに書かなきゃいけない時、上のカンマ区切り出力から不要な列だけ消すと楽。本当はそんなクエリ回避できるのが一番ですけど。
一方、テーブル定義に流用するとかの場合はデータ型も要るので ↓ こんな風に。
select string_agg(quote_ident(attname) || ' ' || format_type(atttypid, null),'DELIMITER' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass('[SCHEMA_NAME.]TABLE_NAME' );
↓ 使用例。列名が多いシステムカタログ
select string_agg(quote_ident(attname) || ' ' || format_type(atttypid, null),e',\n' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass('pg_class' ); +------------------------------+ | string_agg | +------------------------------+ | relname name, +| | relnamespace oid, +| | reltype oid, +| | reloftype oid, +| | relowner oid, +| | relam oid, +| | relfilenode oid, +| | reltablespace oid, +| | relpages integer, +| | reltuples real, +| | relallvisible integer, +| | reltoastrelid oid, +| | relhasindex boolean, +| | relisshared boolean, +| | relpersistence "char", +| | relkind "char", +| | relnatts smallint, +| | relchecks smallint, +| | relhasoids boolean, +| | relhaspkey boolean, +| | relhasrules boolean, +| | relhastriggers boolean, +| | relhassubclass boolean, +| | relrowsecurity boolean, +| | relforcerowsecurity boolean,+| | relispopulated boolean, +| | relreplident "char", +| | relfrozenxid xid, +| | relminmxid xid, +| | relacl aclitem[], +| | reloptions text[] | +------------------------------+ (1 row)

psql
\d pg_class Table "pg_catalog.pg_class" +---------------------+-----------+-----------+ | Column | Type | Modifiers | +---------------------+-----------+-----------+ | relname | name | not null | | relnamespace | oid | not null | | reltype | oid | not null | | reloftype | oid | not null | | relowner | oid | not null | | relam | oid | not null | | relfilenode | oid | not null | | reltablespace | oid | not null | | relpages | integer | not null | | reltuples | real | not null | ...
