This relates to How to concatenate strings of a string field in a PostgreSQL 'group by' query?
SELECT table_name, string_agg(column_name, ', ') AS column_list
FROM information_schema.columns
where table_name not like 'pg_%'
GROUP BY 1
order by table_name ;
I get column_list sometimes ending with:
"(...)"
Is that a feature of pgAdminIII? How, can I get it to give me that data in its entirety?