欢迎光临
我们一直在努力

在ORalce 中,怎么判断两个时间段之间是否有交集, 编写的一个函数.-数据库专栏,ORACLE

建站超值云服务器,限时71元/月

判断2个时间段是否有交集的函数,开始是在我计算考勤的时候有用过,
后来发现用到的地方越来越多,  丢个砖头
9i 下通过.

两个时间段 之间是否有交集  intime—outtime
fromdate–todate
如果有交集,则返回1,否则返回0
*/
create or replace function func_istimecross(intime in date, outtime in date,
fromdate date , todate date )
return number is
result number;
begin
result :=0;
 if (fromdate<intime) then –请假的开始时间<当天应上班的时间
                       if (todate>=outtime) then –请假的结束时间>=当天应下班时间 说明有交集
                      result :=1;
                       end if;
 end if;
 if (fromdate>=intime) then — 如果请假开始时间>应上班时间,只要在下班时间之前,则也说明有集
                       if (fromdate<=outtime) then
                       result :=1;
                       end if;
 end if ;
  return(result);
end func_istimecross;

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在ORalce 中,怎么判断两个时间段之间是否有交集, 编写的一个函数.-数据库专栏,ORACLE
分享到: 更多 (0)