views:

820

answers:

4

The question is pretty self-explanatory. I'm looking for a PostgreSQL equivalent to the SQLite datetime function.

+6  A: 
postgres=# select to_char(now(),'YYYY-mm-dd HH:MM:ss');
       to_char
---------------------
 2008-09-24 02:09:20
(1 row)

postgres=# select to_char(now(),'YYYY-mm-dd HH24:MM:ss');
       to_char
---------------------
 2008-09-24 14:09:20
(1 row)
Vinko Vrsalovic
A: 

select * from now()

Matt -The Hat- McVitie
+2  A: 

I think this is what your're searching for:

timestamp [ (p) ] [ without time zone ] or timestamp [ (p) ] with time zone

otherwise have a look @ http://www.postgresql.org/docs/8.1/interactive/datatype-datetime.html

DeeCee
+2  A: 

OK, thanks for the answers, they helped point me in the right direction. What I actually was looking for was to_timestamp.

Epaga