首页 > 代码库 > 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把字串转换成 numericto_number(‘12,454.8-‘, ‘99G999D9S‘)