Greetings,

There is no direct way to achieve what you want, the easiest hack is to create a temp table with you query i.e.

create table tmp_foo as select col1, col4, col7 from table1, table2 where ....;
copy table tmp_foo to [stdout|<file_name>]

HTH

Adi Alurkar
[EMAIL PROTECTED]


On Aug 25, 2005, at 3:24 PM, David Durham wrote:

This is kind of a pg-admin newbie question, so apologies in advance.

Anyway, I'd like to issue a command that dumps the results of a query to
a txt file in comma delimited format.  Does PostgreSQL ship with
something to do this? I searched the web, but found what appeared to be
non-free solutions.

Thanks,

Dave


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings



---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
      choose an index scan if your joining column's datatypes do not
      match

Reply via email to