9.4 增加时间构造函数,release note 说明如下:
Add functions to construct times, dates, timestamps, timestamptzs, and intervals from individual values, rather than strings (Pavel Stehule)
These functions are prefixed with make_, e.g. make_date().
有了这些函数,操作更简便了,不需要通过 character varying 类型转换。
9.3 版本
1 |
[pg93@db1 ~]$ psql francs francs |
备注:之前版本要构造时间变量, 一般先转换成字符类型 ,再转换成 date 类型,9.4 版本则可简便。
9.4 版本
构造日期(date)
1 |
francs=> select make_date(2014,05,24); |
构造时间(time)
1 |
select make_time(19,05,05); |
构造时间(timestamp)
1 |
select make_timestamp(2014,05,24,20,0,0); |
构造 interval
1 |
francs=> select make_interval(days:=1); |
参考
原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/238067.html