我正在寻找一种在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’,但是有关另外两个的想法呢?
尝试类似:
原文链接:https://www.f2er.com/postgresql/193280.htmlselect 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提供