postgresql的/d命令
ostgreSQL-psql常用命令
\d命令
1
2
3
|
格式:
\d [ pattern ]
\d [ pattern ] +
|
该命令将显示每个匹配关系(表,视图,索引,序列)的信息,包括对象所有的列,它们的类型,表空间(如果不是默认的)和任何特殊属性(如NOT NULL或默认值等)。与唯一约束相关的索引,规则,约束,触发器也同样会显示出来。如果关系是一个视图,还会显示视图的定义。
1.如果\d命令什么都不带,将列出当前数据库中的所有表。
1
2
3
4
5
6
7
8
9
10
11
12
|
sample_db=# \d
List of relations
Schema | Name | Type | Owner
--------+----------------+-------+---------
public | account | table | postgre
public | book | table | postgre
public | customers | table | postgre
public | fruits | table | postgre
...
public | view_t | view | postgre
public | view_t2 | view | postgre
(42 rows)
|
2.\d后面跟一个表名,表示显示这个表的结构定义。
1
2
3
4
5
6
7
8
9
10
11
12
|
sample_db=# \d tb_dept2
Table "public.tb_dept2"
Column | Type | Modifiers
----------+-----------------------+-----------
id | integer | not null
name | character varying(22) |
location | character varying(50) |
Indexes:
"tb_dept2_pkey" PRIMARY KEY, btree (id)
"tb_dept2_name_key" UNIQUE CONSTRAINT, btree (name)
Referenced by:
TABLE "tb_tmp" CONSTRAINT "fk_emp_dept" FOREIGN KEY (deptid) REFERENCES tb_dept2(id)
|
3.\d也可以显示索引信息
1
2
3
4
5
6
|
sample_db=# \d tb_dept2_pkey
Index "public.tb_dept2_pkey"
Column | Type | Definition
--------+---------+------------
id | integer | id
primary key, btree, for table "public.tb_dept2"
|
4.\d后面可以跟一通配符"*"或"?"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
sample_db=# \d boo?
Table "public.book"
Column | Type | Modifiers
------------------+------------------------+-----------
bookid | integer | not null
bookname | character varying(255) | not null
authors | character varying(255) | not null
info | character varying(255) |
comment | character varying(255) |
year_publication | date | not null
Indexes:
"uniqididx" UNIQUE, btree (bookid)
"bkcmtidx" btree (comment)
"bknameidx" btree (bookname)
sample_db=# \d a*
Table "public.account"
Column | Type | Modifiers
--------+---------------+-----------
id | integer |
name | character(20) |
Triggers:
account_stamp BEFORE INSERT ON account FOR EACH ROW EXECUTE PROCEDURE account_stam()
|
5.\d+命令,该命令将显示比\d命令更详细的信息,除了前面介绍的那些,它还会显示任何与表列关联的注释,以及表中出现的ODI。
1
2
3
4
5
6
7
|
sample_db=# \d+ t
Table "public.t"
Column | Type | Modifiers | Storage | Stats target | Description
----------+---------+-----------+---------+--------------+-------------
quantity | integer | | plain | |
price | integer | | plain | |
Has OIDs: no
|
6.匹配不同对象类型的\d命令
1
2
3
4
5
|
如果想只显示匹配的表,可以使用\dt命令
如果想只显示索引,可以使用\di命令
如果想只显示序号,可以使用\ds命令
如果想只显示视图,可以使用\dv命令
如果想只显示函数,可以使用\df命令
|
7.如果想显示SQL已执行的时间,可以用\timing命令
1
2
3
4
5
6
7
8
9
|
sample_db=# \timing on
Timing is on.
sample_db=# select count(*) from t;
count
-------
1
(1 row)
Time: 0.348 ms
|
8.列出所有的schemas可以使用\dn命令
1
2
3
4
5
6
|
sample_db=# \dn
List of schemas
Name | Owner
--------+---------
public | postgre
(1 row)
|
9.显示所有的表空间可以用\db命令
1
2
3
4
5
6
7
|
sample_db=# \db
List of tablespaces
Name | Owner | Location
------------+---------+----------
pg_default | postgre |
pg_global | postgre |
(2 rows)
|
表空间就是对一个目录,放在这个表空间的表,就是把表的数据文件放到这个表空间下。
10.列出数据库所有角色或用户\du或\dg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
sample_db=# \dg
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------+-----------
bob | | {}
linux78 | | {}
post4 | | {}
post5 | Superuser, Cannot login | {}
post6 | Create DB, Cannot login | {}
post7 | Create role, Cannot login | {}
post8 | Cannot login | {}
postgre | Superuser, Create role, Create DB, Replication | {}
sample_db=# \du
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------+-----------
bob | | {}
linux78 | | {}
post4 | | {}
post5 | Superuser, Cannot login | {}
post6 | Create DB, Cannot login | {}
post7 | Create role, Cannot login | {}
post8 | Cannot login | {}
postgre | Superuser, Create role, Create DB, Replication | {}
|
11.\dp或\z命令用于显示表的权限分配情况
1
2
3
4
5
6
|
sample_db=# \dp t
Access privileges
Schema | Name | Type | Access privileges | Column access privileges
--------+------+-------+-------------------+--------------------------
public | t | table | |
(1 row)
|
postgresql的/d命令的更多相关文章
- PostgreSQL增删数据命令示例
在PostgreSQL中如何用简单的几条SQL语句生成大量的测试数据呢? 此处,我简单的写一个例子,供参考(在Postgresql9.1下面做的): (1)生成一万条测试数据的表foo mydb=# ...
- linux下操作PostgreSQL的常用命令
一般性: \copyright 显示PostgreSQL的使用和发行许可条款 \g [文件] or; 执行查询 (并把结果写入文件或 |管道) \h [名称] SQL命令语法上的说明 ...
- PostgreSql的Explain命令详解
http://toplchx.iteye.com/blog/2091860 使用EXPLAIN PostgreSQL为每个收到的查询设计一个查询规划.选择正确的匹配查询结构和数据属性的规划对执行效率是 ...
- Postgresql数据库实用命令
Postgresql 命令 pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start 启动数据库 cr ...
- Postgresql的一些命令
显示所有数据表: \dt 显示表结构: \d YOUR_TABLE 进入数据库: psql DATABASE_NAME 显示所有数据库: \list 退出: \q 删除数据库: dropdb DAT ...
- postgresql的psql命令
1:不进入数据库而执行SQL命令,用参数-c 2:把SQL命令保存在一个外部文件中,用 -f 参数导入并执行 a1.txt文件内容 select * from student; 在shell中用如下命 ...
- PostgreSQL常用查看命令
1. 查看当前库sehcma大小,并按schema排序 SELECT schema_name, pg_size_pretty(sum(table_size)::bigint) as "dis ...
- postgresql数据库常用命令
--获取数据库软件版本select version();--获取数据库启动时间select pg_postmaster_start_time();--获取配置文件最近load时间select pg_c ...
- PostgreSQL增强版命令行客户端(pgcli)
效果: 安装: https://www.pgcli.com/install 官网: https://www.pgcli.com/
随机推荐
- 关于A*寻路算法的认识
最近要参加学校的APP比赛,我们组做的是一个3D迷宫的小APP,我负责的是迷宫的生成与寻路. 寻路算法选择的是A*寻路算法,具体参考的是下面的这篇博客. 本文主要是谈谈自己对A*算法的理解,具体细节, ...
- 【JQuery学习历程】1.初识JQuery
1.JQuery简介: JQuery是用js写的JavaScript库,是为了简化js对HTML元素的操作.实现动画效果并方便为网站提供ajax交互: 2.ready()方法: ready()方法和j ...
- 查看linux进程(强制中止进程),服务及端口号,
进程状态查询 ps -aux [test@pan ~]$ ps -aux USER PID %CPU %MEM VSZ RSS TTY STAT START ...
- [CSS]overflow内容溢出
定义和用法 overflow 属性规定当内容溢出元素框时发生的事情. 说明 这个属性定义溢出元素内容区的内容会如何处理.如果值为 scroll,不论是否需要,用户代理都会提供一种滚动机制.因此,有 ...
- [Linux]关机和重启命令
Linux中常用的关机和重新启动命令有shutdown.halt.reboot以及init,它们都可以达到关机和重新启动的目的,但是每个命令的内部工作过程是不同的,下面将逐一进行介绍. 1. shu ...
- ASP.NET前台JS与后台CS函数如何互相调用
摘要: 在实际的Web开发中,我们可能会常常遇到后台调用前台JS代码或者前台JS调用后台代码的情况.今天就把比较实用的前后台相互调用的方法总结出来和大家分享. 在实际的Web开发中,我们可能会常常遇到 ...
- Java: 实现顺序表和单链表的快速排序
快速排序 快速排序原理 快速排序(Quick Sort)的基本思想是,通过一趟排序将待排记录分割成独立的两部分,其中一部分记录的关键字均比另一部分记录的关键字小,则可对这两部分记录继续进行排序,以达到 ...
- Android模拟器常用命令收录
一.Linux命令 1.挂载/systme分区为读写状态 mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system 2.切换为Root用户 ...
- Solr总结
http://www.cnblogs.com/guozk/p/3498831.html Solr调研总结 开发类型 全文检索相关开发 Solr版本 4.2 文件内容 本文介绍solr的功能使用及相关注 ...
- Ecshop开发
http://www.cnblogs.com/xcxc/category/579565.html