Re: Alternative to AS?

From: Thomas Kellerer <spam_eater(at)gmx(dot)net>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Alternative to AS?
Date: 2010-10-06 19:07:04
Message-ID: i8ihcq$vrq$1@dough.gmane.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Jean-Yves F. Barbier 2010-10-06 19:25:44 recurse in a single query
Previous Message Helgi Örn 2010-10-06 18:36:46 Re: Alternative to AS?