数据库操作记录:

\dt--查看当前进入的数据库中包含的数据表(table);

\d“表名”--查看此表的结构,包含有哪些参数字段;

select参数1,参数2,参数3from表名;---(查询语句)仅查看表中列出的3个参数的信息;

select*fromtab键--可以列出所有的数据表供选择。

的的

操作例子:

supg

cd

cdpostgres

./psqlbeap

\dt

\dcustomer_operators

select*fromcustomer_operators;

selectcount(*)fromcustomer_operators;