postgresql系统表怎么看

有时候我们需要

使用pgadmin 打开某个数据库—打开目录—打开postgresql

可以看到有函数、视图、触发器函数、数据表。

我们常用的有

1、查询所有角色列表

在 pg_roles 视图中 可以查看所有的角色列表

2、数据库中的所有表

pg_tables

该视图中存储了 概要名字、表名、表拥有者、是否有索引、是否有触发器、是否有规则

3、某个表的所有字段

select * from information_schema.columns
where table_schema='public' and table_name ='your_table_name';

这里有表名、列名。

推荐学习《Python教程》。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » postgresql系统表怎么看