PostgreSQL 9.6.0 手册 | |||
---|---|---|---|
上一页 | 上一级 | 章 50. 系统目录 | 下一页 |
50.78. pg_tables
视图pg_tables提供对数据库中每个表的信息的访问。
表 50-79. pg_tables的列
名称 | 类型 | 引用 | 描述 |
---|---|---|---|
schemaname | name | pg_namespace.nspname | 包含表的模式名 |
tablename | name | pg_class.relname | 表名 |
tableowner | name | pg_authid.rolname | 表拥有者的名字 |
tablespace | name | pg_tablespace.spcname | 包含表的表空间的名字(如果使用数据库的默认表空间,此列为空) |
hasindexes | boolean | pg_class.relhasindex | 如果表有(或最近有过)任何索引,此列为真 |
hasrules | boolean | pg_class.relhasrules | 如果表有(或曾经有过)规则,此列为真 |
hastriggers | boolean | pg_class.relhastriggers | 如果表有(或者曾经有过)触发器,此列为真 |
rowsecurity | boolean | pg_class.relrowsecurity | 如果表上启用了行安全性则为真 |