Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
137 views
in Technique[技术] by (71.8m points)

sql - Pulling all rows with the date that is directly less than the date of interest

I currently have a table that has these fields:

Name Date Flag
John 5-28-10 N
John 5-28-10 N
John 5-28-10 N
John 5-29-10 Y
Rick 7-14-12 N
Rick 9-02-13 N
Rick 4-21-15 Y
Rick 6-21-17 N
question from:https://stackoverflow.com/questions/65924359/pulling-all-rows-with-the-date-that-is-directly-less-than-the-date-of-interest

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can use dense_rank as follows:

Select t.* from
(Select t.*,
       dense_rank() over (partition by name order by date desc) as dr
  From your_table t
 Where t.date < (select min(tt.date)
                from your_table tt
                where tt.name = t.name 
                  and tt.flag = 'Y') ) t
  Where t.dr = 1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...