postgresql 查看系统表的信息

前端之家收集整理的这篇文章主要介绍了postgresql 查看系统表的信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

postgresql通过下面语句可能查看到系统用户创建的表信息以及字段名称


select table_schema,
table_name,
column_name,
data_type,
column_default,
is_nullable
from information_schema.columns
where table_name = 'test';

test为创建的表


有点类似MysqL数据库的,几乎是一样的。

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

猜你在找的Postgre SQL相关文章