在postgresql数据库中有哪些表[postgresql教程]

python

查看postgresql数据库" title="postgresql数据库">postgresql数据库中有哪些表的方法:

1、启动postgresql数据库后使用下面的命令进入进入控制台

sudo -u postgres psql

2、使用下面的命令列出当前数据库所有表

dt

列出表名

SELECT tablename FROM pg_tables;

WHERE tablename NOT LIKE 'pg%'

AND tablename NOT LIKE 'sql_%'

ORDER BY tablename;

推荐:PostgreSQL教程

以上是 在postgresql数据库中有哪些表[postgresql教程] 的全部内容, 来源链接: utcz.com/z/527449.html

回到顶部