码迷,mamicode.com
首页 > 数据库 > 详细

如何用sql查询出连续三个月金额大于50的记录

时间:2020-01-15 17:55:35      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:and   记录   nio   HERE   mon   order   --   with   sele   

with tmp as
(
select ‘A‘ AS USERNAME,to_date(‘2017.10‘,‘yyyy.mm‘) month,45 num from dual union all
select ‘A‘ AS USERNAME,to_date(‘2017.11‘,‘yyyy.mm‘) month,53 from dual union all
select ‘A‘ AS USERNAME,to_date(‘2017.12‘,‘yyyy.mm‘) month,59 from dual union all
select ‘B‘ AS USERNAME,to_date(‘2018.1‘,‘yyyy.mm‘) month,78 from dual union all
select ‘B‘ AS USERNAME,to_date(‘2018.2‘,‘yyyy.mm‘) month,69 from dual union all
select ‘B‘ AS USERNAME,to_date(‘2018.3‘,‘yyyy.mm‘) month,51 from dual union ALL
select ‘B‘ AS USERNAME,to_date(‘2018.5‘,‘yyyy.mm‘) month,49 from dual union ALL
select ‘B‘ AS USERNAME,to_date(‘2018.4‘,‘yyyy.mm‘) month,51 from dual union ALL
select ‘B‘ AS USERNAME,to_date(‘2018.6‘,‘yyyy.mm‘) month,49 from dual union ALL
select ‘A‘ AS USERNAME,to_date(‘2017.9‘,‘yyyy.mm‘) month,52 from dual union ALL
select ‘A‘ AS USERNAME,to_date(‘2017.7‘,‘yyyy.mm‘) month,49 from dual union ALL
select ‘A‘ AS USERNAME,to_date(‘2017.8‘,‘yyyy.mm‘) month,55 from dual
)
select USERNAME,month start_month,num,num2,num3 from
( select USERNAME,
month,
num,
lead(num, 1, null) over(PARTITION BY username order by month) num2,
lead(num, 2, null) over(PARTITION BY username order by month) num3
from tmp order by username,month)
--where num >=50 and num2 >=50 and num3 >=50

如何用sql查询出连续三个月金额大于50的记录

标签:and   记录   nio   HERE   mon   order   --   with   sele   

原文地址:https://www.cnblogs.com/HondaHsu/p/12197970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!