这个问题非常明显。我正在寻找与SQLite datetime function等效的PostgreSQL。
答案 0 :(得分:6)
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)
答案 1 :(得分:4)
我认为这就是你在寻找的东西:
时间戳[(p)] [没有时区] 要么 带时区的时间戳[(p)]
否则看看@ http://www.postgresql.org/docs/8.1/interactive/datatype-datetime.html
答案 2 :(得分:2)
好的,谢谢你的回答,他们帮我指明了正确的方向。我实际上在寻找的是to_timestamp。