Re: Question about SQL statement error

From: Michael Glaesemann <grzm(at)myrealbox(dot)com>
To: Mário Gamito <gamito(at)netual(dot)pt>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Question about SQL statement error
Date: 2004-08-25 11:54:07
Message-ID: 785E1BD1-F68D-11D8-A74B-000A95C88220@myrealbox.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


On Aug 25, 2004, at 8:37 PM, Mário Gamito wrote:

> why this gives an error ?
>
> SELECT url_negado INTO OUTFILE '/tmp/urls_negados.txt' FROM
> urls_negados;

I'm not sure whether this is a MySQLism or part of the SQL spec not
implemented in PostgreSQL, but I suspect the former. INTO OUTFILE is
not valid in PostgreSQL. You might want to look at the COPY command

<http://www.postgresql.org/docs/current/static/sql-copy.html>

, or perhaps using \o in psql to redirect results to a file.

<http://www.postgresql.org/docs/current/static/app-psql.html>

The PostgreSQL SQL command reference lists valid SQL syntax. I think
you'll find it useful.

Michael Glaesemann
grzm myrealbox com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2004-08-25 11:54:59 Re: Question about SQL statement error
Previous Message Mário Gamito 2004-08-25 11:37:51 Question about SQL statement error