Re: rounding timestamps - Mailing list pgsql-general

From Claudio Lapidus
Subject Re: rounding timestamps
Date
Msg-id BAY7-DAV4BG3qlSIjSa00002640@hotmail.com
Whole thread Raw
In response to rounding timestamps  ("Claudio Lapidus" <clapidus@hotmail.com>)
List pgsql-general
Joe Conway wrote:
> Is this what you wanted?
>
> regression=# select to_char(timestamp(0) '2003-10-24
> 15:30:59.999','YYYYMMDDHH24MISS');
>      to_char
> ----------------
>   20031024153100
> (1 row)

Yes! Exactly!

>
> See:
> http://www.postgresql.org/docs/current/static/datatype-datetime.html

Shame on me. I've must read that page more times than I can remember. I
never realized that I could use the precision qualifier to do a cast (and
round):

comp_20031117=> create table ts (ts timestamp without time zone);
CREATE TABLE
comp_20031117=> insert into ts values ('2003-10-24 15:30:59.999');
INSERT 406299 1
comp_20031117=> select * from ts;
           ts
-------------------------
 2003-10-24 15:30:59.999
(1 row)

comp_20031117=> select to_char (ts ::timestamp(0), 'YYYYMMDDHH24MISS') from
ts;
    to_char
----------------
 20031024153100
(1 row)

thank you very much Joe
cl.

PS. Alvaro, your solution was what I was implementing already, but yes it's
ugly, that's why I gave it a second round. Thanks anyway.

pgsql-general by date:

Previous
From: Dave Cramer
Date:
Subject: Re: Lock strategies!
Next
From: Tom Lane
Date:
Subject: Re: why ORDER BY works wrong in pg7.3.4?