前几天一个朋友提出的:oracle里面怎么查一个表中的日期字段的连续日期的缺少的日期 。这个问题有点难度,不过还是解决了,有两种方法(其实两种方法都是朋友小虫提出的,我只不过加以验证而已)。
方法一:
declare
col number;
v_date date;
maxdate date;
Cursor myCursor is
Select docdat, shpid From repfifoday where shpid = 204 order by docdat;
begin
select max(docdat) into maxdate from repfifoday where shpid = 204;
for myCur in myCursor loop
v_date := myCur.docdat;
LOOP
v_date := v_date + 1;
select count(*)
into col
from repfifoday
where docdat = v_date
and shpid = 204;
if col = 0 and v_date < maxdate then
insert into aa values (v_date);
commit;
else
exit;
end if;
END LOOP;
END LOOP;
end;
方法二:
那就更加简单了,先建一临时表tmp,有col1和col2字段,都为日期型。把最小日期到最大日期插入到一个临时表tmp的col1字段,再把每个门店的日期更新到这个表里面的col2字段(以日期为条件),为空的就是那些日期。