PostgreSQL数据字典查询[持续更新]

前端之家收集整理的这篇文章主要介绍了PostgreSQL数据字典查询[持续更新]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

查询表名和列名:

select * from information_schema.columns where table_schema='smartsys' and table_name like 'obj_%' order by table_name,column_name;

原文链接:https://www.f2er.com/postgresql/194670.html

猜你在找的Postgre SQL相关文章