发布网友 发布时间:2022-04-23 22:53
共2个回答
热心网友 时间:2022-04-13 12:14
select ID,ZONENAME,PERC,DATE
from ABC
where date >= to_date('20090916','yyyymmdd')
and date <= to_date('20090920','yyyymmdd')
order by date;
热心网友 时间:2022-04-13 13:32
用count呗,
就是说, 20号跟16号差5天,
在表里面查16号到20号之间出现过5次的id应该可以。
除非一个id一天又好几次。
select id, count(*) as cnt from abc
where date between '2009-09-16' and '2009-09-20'
group by id
having count(*) = datediff(‘d','2009-09-20','2009-09-16')
我电脑上没oracle, 语法可能会有点错误, 但是大概方法你应该懂了。