PostgreSQL 中获取表名、数据库名称的方法

前端之家收集整理的这篇文章主要介绍了PostgreSQL 中获取表名、数据库名称的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

①表名

SELECT tablename FROM pg_tables

WHERE tablename NOT LIKE 'pg%'

AND tablename NOT LIKE 'sql_%'

数据库

SELECT datname FROM pg_database;

③列名

select *

from information_schema.columns

where table_name = 'final_back_pg_lv10'

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

猜你在找的Postgre SQL相关文章