postgresql时间差计算

工作中使用了阿里云的数据库,语法是用的postgresql,这个语言的时间函数计算跟impala和mysql等等都不太一样。业务中需要去做时间差的时候,本来想着用timediff()之类的函数去计算,但是postgresql并不支持,后来查了一下,发现postgresql的时间差的计算是用time+'x min’之类的解决:(工作代码)
case when update_time>create_time and update_time case when update_time>create_time+‘12 hours’ and update_time case when update_time>create_time+‘24 hours’ and update_time case when update_time>create_time+‘48 hours’ and update_time 参考:https://www.cnblogs.com/mchina/archive/2013/04/15/3010418.html

你可能感兴趣的:(solve,problem)