postgresql如何查看有哪些表[postgresql教程]

python

postgresql中可以用d命令列出当前数据库中的所有表,例如:

# d (列出当前数据库中的所有表),示例结果:

Schema   |  Name   | Type  |  Owner  

public  | company   | table | postgres

public  | department | table | postgres

d tablename 可以查看具体表格信息,例如:

#d  company (列出当前数据库中的company 表),示例结果:

Column  |     Type     | Collation | Nullable 

id     |       integer    |       | not null  

name   |        text     |       | not null 

age    |       integer    |        | not null

Python学习网,大量的免费PostgreSQL入门教程,欢迎在线学习!

以上是 postgresql如何查看有哪些表[postgresql教程] 的全部内容, 来源链接: utcz.com/z/525891.html

回到顶部