Re: \copy multiline - Mailing list pgsql-sql

From Rob Sargentg
Subject Re: \copy multiline
Date
Msg-id 50B75EDB.5030006@gmail.com
Whole thread Raw
In response to Re: \copy multiline  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgsql-sql
On 11/29/2012 02:33 AM, Guillaume Lelarge wrote:
> On Wed, 2012-11-28 at 21:21 -0600, Seb wrote:
>> Hi,
>>
>> I use \copy to output tables into CSV files:
>>
>> \copy (SELECT ...) TO 'a.csv' CSV
>>
>> but for long and complex SELECT statements, it is cumbersome and
>> confusing to write everything in a single line, and multiline statements
>> don't seem to be accepted.  Is there an alternative, or am I missing an
>> continuation-character/option/variable that would allow multiline
>> statements in this case?
>>
> A simple way to workaround this issue is to create a view with your
> query and use the view in the \copy meta-command of psql. Of course, it
> means you need to have the permission to create views in the database.
>
>
Or maybe a function returning a table or set of records. Might be 
slightly more flexible than the view.



pgsql-sql by date:

Previous
From: Wolfe Whalen
Date:
Subject: Re: unique keys / foreign keys on two tables
Next
From: Sebastian P. Luque
Date:
Subject: Re: \copy multiline