postgresql 查询某一个表中的全部字段

postgresql 查询某一个表中的全部字段,也就是查询全部的列名sql

select * from information_schema.columns
where table_schema='public' and table_name='表名称 ';
相关文章
相关标签/搜索