- 基本操作:
\o /tmp/11.txt ,查询结果输出到文件
\d 查询table结构
\x 切换显示方式
- postgresql中可以导出某个sql的执行结果到文件中,方法是在psql中首先执行\o filename,然后执行要导出结果的sql语句即可,可以看到刚刚执行的sql执行结果已经在filename中了。方便,强大,赞!
举个例子:
psql test_db;
\o /tmp/test.out
select username from member where age > 18;
然后在/tmp/test.out文件中已经有了member表中age>18的所有用户的姓名,下载下来导入到excel中处理吧!