1:命令行登录postgresql:
psql -h 40.125.174.90 -U invoice -d bmw_invoice
2:列出所有的数据库
psql: /l或/list
3:切换数据库
psql: /c dbname
4:列出当前数据库下的数据表
psql: /d
5:列出指定表的所有字段
psql: /d tablename
6:查看指定表的基本情况
psql: /d+ tablename
7:查看指定表的基本情况
psql: /d+ tablename
8:退出登录
psql:/q
9:查询最大连接数
show max_connections;
10:查看数据库连接数
select count(*) from pg_stat_activity;
转载请注明来源网站:blog.ytso.com谢谢!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/4508.html