码迷,mamicode.com
首页 > 其他好文 > 详细

postgres时间转换函数

时间:2014-07-06 21:31:07      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:os   art   io   时间   div   amp   

函数返回类型描述例子
to_char(timestamp, text) text 把时间戳转换成字串 to_char(current_timestamp, ‘HH12:MI:SS‘)
to_char(interval, text) text 把时间间隔转为字串 to_char(interval ‘15h 2m 12s‘, ‘HH24:MI:SS‘)
to_char(int, text) text 把整数转换成字串 to_char(125, ‘999‘)
to_char(double precision, text) text 把实数/双精度数转换成字串 to_char(125.8::real, ‘999D9‘)
to_char(numeric, text) text 把 numeric 转换成字串 to_char(-125.8, ‘999D99S‘)
to_date(text, text) date 把字串转换成日期 to_date(‘05 Dec 2000‘, ‘DD Mon YYYY‘)
to_timestamp(text, text) timestamp with time zone 把字串转换成时间戳 to_timestamp(‘05 Dec 2000‘, ‘DD Mon YYYY‘)
to_timestamp(double precision) timestamp with time zone 把 UNIX 纪元转换成时间戳 to_timestamp(200120400)
to_number(text, text) numeric 把字串转换成 numeric to_number(‘12,454.8-‘, ‘99G999D9S‘)

postgres时间转换函数,布布扣,bubuko.com

postgres时间转换函数

标签:os   art   io   时间   div   amp   

原文地址:http://www.cnblogs.com/chjbbs/p/3824689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!