
↓ 昨日のクエリの基本形で、全列名をカンマ
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)

↓ 考えた結果。psql
# \set col '\\gset \\\\ select string_agg(quote_ident(attname), '', '' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass(:''x'');' # select 'pg_tables' x:col +-----------------------------------------------------------------------------------------------+ | string_agg | +-----------------------------------------------------------------------------------------------+ | schemaname, tablename, tableowner, tablespace, hasindexes, hasrules, hastriggers, rowsecurity | +-----------------------------------------------------------------------------------------------+ (1 row)

1
select '対象テーブル名'AS x :col
つまり対象テーブル名を
変数
select string_agg(quote_ident(attname), ', ' order by attnum) from pg_attribute where attnum > 0 and attrelid = to_regclass(:'x');-- use variable x
以上により
↓ テスト。列数の多いシステムカタログ
# \t \\ \a Tuples only is on. Output format is unaligned. # # select 'pg_class' x:col relname, relnamespace, reltype, reloftype, relowner, relam, relfilenode , reltablespace, relpages, reltuples, relallvisible, reltoastrelid, rel hasindex, relisshared, relpersistence, relkind, relnatts, relchecks, re lhasoids, relhaspkey, relhasrules, relhastriggers, relhassubclass, relr owsecurity, relforcerowsecurity, relispopulated, relreplident, relfroze nxid, relminmxid, relacl, reloptions

↓ もう一つテスト。スキーマ名・テーブル名・列名とも日本語という実際は避けたいパターンですが、同様に列名一覧を取得できました(自動的にクォートされる)。クエリ時は、二重引用符なしの「スキーマ
# \d "あえて日本語"."のテーブル" Table "あえて日本語.のテーブル" +--------+---------+-----------+ | Column | Type | Modifiers | +--------+---------+-----------+ | id | integer | | | 項目1 | text | | | 項目2 | text | | | 項目3 | text | | | 項目4 | text | | | 項目5 | text | | | 項目6 | text | | | 項目7 | text | | | 項目8 | text | | | 項目9 | text | | +--------+---------+-----------+ # select 'あえて日本語.のテーブル' x:col +-------------------------------------------------------------------------------------+ | string_agg | +-------------------------------------------------------------------------------------+ | id, "項目1", "項目2", "項目3", "項目4", "項目5", "項目6", "項目7", "項目8", "項目9" | +-------------------------------------------------------------------------------------+ (1 row)

列名一覧はもっと簡単な方法があるかもですが、今回のは「疑似的な引数つきで