postgresql 如何查看有哪些表

933次阅读
没有评论

postgresql

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

postgresql

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

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:postgresql2022-12-02发表,共计450字。
新手QQ群:570568346,欢迎进群讨论 Python51学习