Re: Alternative to AS? - Mailing list pgsql-novice

From Thomas Kellerer
Subject Re: Alternative to AS?
Date
Msg-id i8ihcq$vrq$1@dough.gmane.org
Whole thread Raw
In response to Re: Alternative to AS?  (Helgi Örn <sacredeagle@gmail.com>)
Responses Re: Alternative to AS?  (Helgi Örn Helgason <helgi@helgason.nu>)
List pgsql-novice
Helgi Örn, 06.10.2010 20:36:
>> SELECT tid_in, to_char(tid_in, 'HH24.MI') AS format FROM timmar;
>>
> This does not work at all.

"Does not work" is not a valid Postgres error message.
What exactly is "not working"?

postgres=> create table timmar ( tid_in time );
CREATE TABLE
postgres=> insert into timmar values (TIME '23:24');
INSERT 0 1
postgres=> commit;
COMMIT
postgres=> SELECT to_char(tid_in, 'HH24.MI') AS format FROM timmar;
  format
--------
  23.24
(1 row)

If this is not what you want, you need to be more detailed.

Thomas

pgsql-novice by date:

Previous
From: Helgi Örn
Date:
Subject: Re: Alternative to AS?
Next
From: "Jean-Yves F. Barbier"
Date:
Subject: recurse in a single query