postgresql中获取两个时间类型小时差值

前端之家收集整理的这篇文章主要介绍了postgresql中获取两个时间类型小时差值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

select extract(day from t) * 24 + extract(hour from t) from (select (timestamp '2013-12-14 12:00:00' - timestamp '2013-12-11 4:00:00') as t) as a;

例如a表中有start,end俩字段

selectextract(day from (end-start)) * 24 + extract(hour from (end-start)) from a

原文链接:https://www.f2er.com/postgresql/193343.html

猜你在找的Postgre SQL相关文章