Oracle取某个时间点前后的整半小时的时间点

Oracle取某个时间点前后的整半小时的时间点:

需求简述:例如考勤计算中,我们是以0.5小时为单位去计算考勤时数,则需要对上班时间向后取整,下班时间向前取整

例如:上班时间:8:18,按8:30计算;下班时间17:58,按17:30计算。

select sysdate as 当前时间,
       trunc(sysdate, 'hh24') +
         decode(sign(to_number(to_char(sysdate, 'mi')) - 30), 1, 1 / 48, 0) as early_time,
       trunc(sysdate, 'hh24') + 
         decode(sign(to_number(to_char(sysdate, 'mi')) - 30), 1, 1 / 24, 1 / 48) as later_time
  from dual;

拿系统时间做测试,输出结果:

感谢您的阅读,如有错误或不足之处,敬请批评指正!

你可能感兴趣的:(Oracle,oracle)