PostgreSQL中常用的时间日期脚本使用教程
获取系统时间函数
selectnow();--2013-11-2816:20:25.259715+08 selectcurrent_timestamp;--2013-11-2816:20:38.815466+08 selectcurrent_date;--2013-11-28 selectcurrent_time;--16:21:08.981171+08
时间的计算
--使用interval
selectnow()+interval'2day';--2013-11-3016:21:47.610118+082天后 selectnow()-interval'2day';--2013-11-2616:22:03.390593+082天前 selectnow()+interval'2hour';--2013-11-2818:22:14.578733+082小时后
--interval可以不写,其值可以是
--AbbreviationMeaning --YYears --MMonths(inthedatepart) --WWeeks --DDays --HHours --MMinutes(inthetimepart)
时间的截取
--使用extractextract(interval,timestamp);
selectextract(yearfromnow());--2013 selectextract(monfromnow());--5月份
时间的转换
selecttimestamp'2012-05-1218:54:54';--2012-05-1218:54:54 selectdate'2012-05-1218:54:54';--2012-05-12 selecttime'2012-05-1218:54:54';--18:54:54 selectTIMESTAMPWITHTIMEZONE'2012-05-1218:54:54'--2012-05-1218:54:54+08
与unix时间戳的转换
SELECTTIMESTAMP'epoch'+1341174767*INTERVAL'1second'; --2012-07-0120:32:47
实例
1.当前时间/日期/时间戳
获取当前时间的方式有很多种,在这之前我们需要知道以下两种类型的区别:
总是返回当前的值(clock_timestamp())
总是返回当前值,但在事务中它返回的是事务开始的时间(now())
让我们看下面这个例子
postgres=#BEGIN; postgres=#SELECTnow(); now ------------------------------- 2013-08-2612:17:43.182331+02 postgres=#SELECTnow(); now ------------------------------- 2013-08-2612:17:43.182331+02 postgres=#SELECTclock_timestamp(); clock_timestamp ------------------------------- 2013-08-2612:17:50.698413+02 postgres=#SELECTclock_timestamp(); clock_timestamp ------------------------------- 2013-08-2612:17:51.123905+02
你会发现,语句执行时候clock_timestamp()的返回值每次都发生了改变,但是now()总是返回相同的值。当你需要考虑时区时,你应该特别注意这两个函数差异。
2.时间区间:比如3天前
使用interval操作符你可以轻松的构建一个时间区间,例如
interval'1day' interval'5days' interval'5days'+interval'3hours' interval'5days3hours'
你可以看到,我们可以用interval操作符来简单的进行数学运算,这特别适合于构建例如3天前这样的时间区间,比如:
postgres=#SELECTnow()-interval'3days'; ?column? ------------------------------- 2013-08-2312:23:40.069717+02
3.获取星期几
有些时候对于一个给定的时间,你仅仅只想知道的是这天是星期几或者是它属于那个世纪的更或者你只想知道它是一年中的第几天。PostgreSQL中的extract()函数提供了这种功能。
如下例子是在8月26日星期一进行测试的。
postgres=#SELECTextract(DAYFROMnow()); date_part ----------- 26 postgres=#SELECTextract(DOWFROMnow()); date_part ----------- 1
4.时区转换
有些时候,时区转换对于特定时间在不同时区显示特别有用。ATTIMEZONE提供了这种功能,它是如何做到的?我们将在一个事务中进行演示,因为同一事务中now()函数总是返回相同的值,从而我们可以很容易看到同一时间在不同时区显示的差别。
postgres=#BEGIN; BEGIN postgres=#SELECTnow(); now ------------------------------- 2013-08-2612:39:39.122218+02 postgres=#SELECTnow()ATTIMEZONE'GMT'; timezone ---------------------------- 2013-08-2610:39:39.122218 postgres=#SELECTnow()ATTIMEZONE'GMT+1'; timezone ---------------------------- 2013-08-2609:39:39.122218 postgres=#SELECTnow()ATTIMEZONE'PST'; timezone ---------------------------- 2013-08-2602:39:39.122218