PostgreSQL:两个日期之间的天/月/年
发布时间:2020-12-13 16:42:56 所属栏目:百科 来源:网络整理
导读:我正在寻找一种在PostgreSQL中实现SQLServer函数datediff的方法。那是, datediff(dd,'2010-04-01','2012-03-05') = 704 // 704 changes of day in this intervaldatediff(mm,'2012-03-05') = 23 // 23 changes of monthdatediff(yy,'2012-03-05') = 2 // 2
我正在寻找一种在PostgreSQL中实现SQLServer函数datediff的方法。那是,
datediff(dd,'2010-04-01','2012-03-05') = 704 // 704 changes of day in this interval datediff(mm,'2012-03-05') = 23 // 23 changes of month datediff(yy,'2012-03-05') = 2 // 2 changes of year 我知道我可以通过简单地使用减法来做’dd’,但是有关另外两个的想法呢?
尝试类似:
select age('2010-04-01','2012-03-05'),date_part('year',age('2010-04-01','2012-03-05')),date_part('month',date_part('day','2012-03-05')); 这个功能将在两个日期之间给你全年,一个月,几天。对于日期更改的数量 – 我们的链接,由revoua:http://www.sqlines.com/postgresql/how-to/datediff提供 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |