日期转换函数,在Postgre中和Oracle中都好用。
to_timestamp
(timeText,formatText)
但是,日期的格式不一定都是好用的!
postgre的毫秒表示是
to_timestamp
(20101217223518666,YYYYMMDDHH24MISSMS) //2010-12-17 22:35:18.666
oracle的毫秒表示是
to_timestamp
(20101217223518666,YYYYMMDDHH24MISSFF3) //2010-12-17 22:35:18.666
如果Postgre使用了FF3的方式,不会报错,前面的日期虽然没有问题,但是后面的时间的生成一定是错误的!
参考:postgre官方网站
http://www.postgresql.org/docs/8.3/interactive/functions-formatting.html