postgresql如何计算两日期间有多少天
postgresql中计算时间差的方法:
date_part() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等。
select now()---------------------
2018-02-01 15:49:15
select date_part('year',now())
---------------------
2018
select date_part('day',now())
---------------------
1
可以通过date_part计算两个时间相差几天,几分钟,几秒钟等。
select date_part('day','2018-01-31 15:49:15'::timestamp-'2018-01-10 10:12:15'::timestamp)---------------------
21
推荐:PostgreSQL教程
以上是 postgresql如何计算两日期间有多少天 的全部内容, 来源链接: utcz.com/z/538939.html