Re: Formatting current_time output

From: "Charles H(dot) Woloszynski" <chw(at)clearmetrix(dot)com>
To: Josh Berkus <josh(at)agliodbs(dot)com>
Cc: Thomas Good <tomg(at)sqlclinic(dot)net>, Postgres SQL <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Formatting current_time output
Date: 2002-10-03 15:22:48
Message-ID: 3D9C60C8.5070601@clearmetrix.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On 7.2.2, you can use

select to_char(now(), 'HH12:MI AM');

(using current_time raises an error, but now() works fine).

Charlie

Josh Berkus wrote:

>Thomas,
>
>
>
>>SELECT TO_CHAR(SYSDATE,'HH:MI AM') FROM DUAL; -- Oracle
>>SELECT TIME_FORMAT(current_time,'%l:%i %p'); -- MySQL
>>
>>Returned: 10:58 AM
>>
>>I've found lpad(current_time,5); which gets me 1/3 of the way.
>>Is there a function I haven't found?
>>
>>
>
>Um, what's wrong with:
>SELECT to_char(current_time, 'HH12:MI AM');
>?
>
>(See "Formatting Functions" under "Functions and Operators" in the
>User's Guide)
>
>-Josh Berkus
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 5: Have you checked our extensive FAQ?
>
>http://www.postgresql.org/users-lounge/docs/faq.html
>
>

--

Charles H. Woloszynski

ClearMetrix, Inc.
115 Research Drive
Bethlehem, PA 18015

tel: 610-419-2210 x400
fax: 240-371-3256
web: www.clearmetrix.com

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Karel Zak 2002-10-03 15:28:01 Re: Formatting current_time output
Previous Message Thomas Good 2002-10-03 15:10:03 Re: Formatting current_time output