博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
List all tables in postgresql
阅读量:5876 次
发布时间:2019-06-19

本文共 940 字,大约阅读时间需要 3 分钟。

You should be able to just run select * from information_schema.tables to get a listing of every table being managed by Postgres for a particular database.

You can also add a where table_schema = 'information_schema' to see just the tables in the information schema.

 

The view pg_tables provides access to useful information about each table in the database.

pg_tables
 Columns
Name Type References Description
schemaname name .nspname Name of schema containing table
tablename name .relname Name of table
tableowner name .rolname Name of table's owner
tablespace name .spcname Name of tablespace containing table (null if default for database)
hasindexes boolean .relhasindex True if table has (or recently had) any indexes
hasrules boolean .relhasrules True if table has (or once had) rules
hastriggers boolean .relhastriggers True if table has (or once had) triggers

转载于:https://www.cnblogs.com/MagicLetters/archive/2013/05/19/3444260.html

你可能感兴趣的文章
CentOS 7 设置中文环境
查看>>
javascript中关于数组的一些鄙视题
查看>>
C#语法之特性
查看>>
C#中使用aria2c进行下载并显示进度条
查看>>
鞋业管理系统定期执行任务
查看>>
2016教师节微信祝福语大全
查看>>
【转】随机函数的rand、srand用法
查看>>
Nginx: could not build the server_names_hash 解决办法
查看>>
P4factory <Integration with Mininet>
查看>>
Ubuntu16.04下搭建Go语言环境
查看>>
.NetCore~Linux环境下部署
查看>>
eclipse调试(debug)的时候,出现Source not found,Edit Source Lookup Path,一闪而过
查看>>
Html5视频播放器-VideoJS+Audio标签实现视频,音频及字幕同步播放
查看>>
Kafka消息模拟器
查看>>
Linux常用基本命令(cat)
查看>>
HTML5 Canvas游戏开发实战
查看>>
转-玩转git,让git成为个人工作备份利器
查看>>
extjs4 系列文章
查看>>
nginx设置http代理
查看>>
【C011】Python - 基础教程学习(二)
查看>>