假设postgres有数据库testdb
在testdb下执行下列sql语句,得到所有表的信息
select * from information_schema.columns
where table_schema='public' and table_name<>'pg_stat_statements';
在testdb下执行下列sql语句,得到所有表的列名
select column_name from information_schema.columns
where table_schema='public' and table_name<>'pg_stat_statements';
在testdb下执行下列sql语句,得到表"table"的列名
select column_name from information_schema.columns
where table_schema='public' and table_name='table';