查找特定范围内的历史记录增加

时间:2019-07-09 10:03:28

标签: sql oracle date-range

我想查找日期范围为1/1 / 19-1 / 7/19且增加金额的记录

使用表HISTORY

  

DATE AMOUNT ID

(日期,数字,varchar2(30))

我在范围内正确找到了ID

仅当具有相同ID的两个记录时,才可能假定增加/减少

 with suspect as
 (select id
    from history
   where t.createddate < to_date('2019-07-01', 'yyyy-mm-dd')
   group by id
  having count(1) > 1),
ids as
 (select id
    from history
    join suspect
      on history.id = suspect.id
   where history.date > to_date('2019-01-01', 'yyyy-mm-dd')
     and history.date < to_date('2019-07-01', 'yyyy-mm-dd'))
select count(distinct id)
  from history a, history b
 where a.id = b.id
   and a.date < b.date
   and a.amount < b.amount

要发现增加的问题,我需要找到先前的记录,该记录可以在时间范围之前

我可以找到时间范围之前的上一个时间,但是我无法使用它:

ids_prevtime as (
  select history.*, max(t.date) over (partition by t.id) max_date
  from history   
  join ids on history.userid = ids.id
   where history.date < to_date('2019-01-01','yyyy-mm-dd' )  
  ), ids_prev as (
  select * from ids_prevtime where createdate=max_date
  )

2 个答案:

答案 0 :(得分:2)

我看到您找到了解决方案,但是也许可以使用lag()来简化它:

select count(distinct id)
  from (select id, date_, amount, 
               lag(amount) over (partition by id order by date_) prev_amt
          from history)
  where date_ between date '2019-01-01' and date '2019-07-01' 
    and amount > prev_amt;

dbfiddle

答案 1 :(得分:0)

添加范围之前的最近历史记录与范围内的记录的并集

ids_prev as
 (select ID, DATE, AMOUNT
    from id_before_rangetime
   where createddate = max_date),
ids_in_range as
 (select history.*
    from history
    join ids
      on history.ID = ids.ID
   where history.date > to_date('2019-01-01', 'yyyy-mm-dd')
     and history.date < to_date('2019-07-01', 'yyyy-mm-dd')),
all_relevant as
 (select * from ids_in_range union all select * from ids_prev)

然后计数增加:

select count(distinct id)
  from all_relevant a, all_relevant b
 where a.id = b.id
   and a.date < b.date
   and a.amount < b.amount