On Wed, Mar 27, 2002 at 12:55:54PM +0200, [EMAIL PROTECTED] wrote: > Hello all. > > I'v migrated my data to 7.2. > Now I'm testing aplications, but looks like timestamp function in > postgres is broken: > klienti=# select date(now()); > date > ------------ > 2002-03-27 > (1 row) > > klienti=# select timestamp(date(now())); > ERROR: parser: parse error at or near "date"
I thing better is use some cast method instead cast by function call: test=# SELECT CAST( now() AS date ), now()::date, 'now'::date::timestamp; now | now | timestamptz ------------+------------+------------------------ 2002-03-27 | 2002-03-27 | 2002-03-27 00:00:00+01 (1 row) > > I need to make querys with timestamp(date,time); > But timestamp don't work even with sample from manual: > > klienti=# select timestamp(date '1998-02-24',time '23:07'); > ERROR: parser: parse error at or near "date" test=# select date '1998-02-24' + time '23:07'; ?column? --------------------- 1998-02-24 23:07:00 (1 row) test=# select timestamp '1998-02-24 23:07'; timestamptz ------------------------ 1998-02-24 23:07:00+01 (1 row) Karel -- Karel Zak <[EMAIL PROTECTED]> http://home.zf.jcu.cz/~zakkr/ C, PostgreSQL, PHP, WWW, http://docs.linux.cz, http://mape.jcu.cz ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]