So listen Sie Spalten für bestimmte Tabellen in PostgreSQL auf
SELECT *
FROM information_schema.columns
WHERE table_schema = 'your_schema'
AND table_name = 'your_table'
;
Foolish Falcon