% cd /usr/local/pgsql/src/tutorial % psql -s mydb Welcome to the POSTGRESQL interactive sql monitor: Please read the file COPYRIGHT for copyright terms of POSTGRESQL type \? for help on slash commands type \q to quit type \g or terminate with semicolon to execute query You are currently connected to the database: postgres mydb=> \i basics.sql\i 命令从指定的文件里读入查询.-s 选项让你进入单步模式,这样在把查询送给后端之前会停下来.本节的查询语句都在 basics.sql 文件里.
psql 有一系列 \d 命令用于显示系统信息. 使用这些命令去获得更多详细信息; 或在 psql 提示符下键入 \? 查看列表.