postgresql是这样的!我的心得...

postgresql是这样的!我的心得...

测试: su postgres
      psql test



运行:
  
生成表:
create table my_table(first integer not null default 0,second text );
查询表定义:

\d my_table

改变提示符:
\set PROMPT1 '%n@%m %~%R%# '
查询表:

select * from my_table;
      
请问刚安装时的 postgresql数据库的用户名称和密码分别是什么?
连接的端口是5432吗?      
user should be postgres,password should be NULL      
initdb -D /xxxx -W -E
其中的-W就是让你指定密码的!你可以不用-W,密吗就是空.      
你们都是用postgresql的吗?这里讨论postgresql的太少了      
据说学院气息比较重. 而且已经停止开发了.

是这样的吗?