Re: [GENERAL] Naming columns for SQL output ... - Mailing list pgsql-general

From Ross J. Reedstrom
Subject Re: [GENERAL] Naming columns for SQL output ...
Date
Msg-id 19990923232813.B21810@wallace.ece.rice.edu
Whole thread Raw
In response to Re: [GENERAL] Naming columns for SQL output ...  ("Aaron J. Seigo" <aaron@gtv.ca>)
List pgsql-general
On Thu, Sep 23, 1999 at 08:12:34PM -0600, Aaron J. Seigo wrote:
> hi..
>
[ Jim Richards <grumpy@cyber4.org> wrote:  ]
> > How do I name a column in an SQL query. In Oracle I would use
> >
> >     select now() 'the time now';
> >
> > how is this done in PostgreSQL?
> >
> if i understand your question:
>
> select now() as 'the time now';

Always test your code ;-)

idas_demo=> select now() as 'the time now';
ERROR:  parser: parse error at or near "'"
idas_demo=> select now() as "the time now";
the time now
----------------------
1999-09-23 23:26:29-05
(1 row)

idas_demo=>

Hmm, seems since the string is a fieldname, it needs doublequotes.

Ross
--
Ross J. Reedstrom, Ph.D., <reedstrm@rice.edu>
NSBRI Research Scientist/Programmer
Computer and Information Technology Institute
Rice University, 6100 S. Main St.,  Houston, TX 77005

pgsql-general by date:

Previous
From: Alec Smecher
Date:
Subject: Counting UPDATE changes?
Next
From: Mike Mascari
Date:
Subject: Re: [GENERAL] pl/pgsql