首页 > 代码库 > postgres时间转换函数
postgres时间转换函数
函数 | 返回类型 | 描述 | 例子 |
---|---|---|---|
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‘) |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。