1、连接到pgsql数据库
psql -U postgres
2、查看所有数据库
l
3、连接到数据库test
c test
4、查看数据库所有表以及视图
d
5、查看数据库所有的表
dt
6、查看某个表的结构
d table_a