Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

Oracle SQL - only last reading before the 1st of next month

Number field is the key but it can be modified several times a month (or not all all). Need to pull for last 6 complete month/year (Month_Year), only last reading before the 1st of next month.

enter image description here

question from:https://stackoverflow.com/questions/65909926/oracle-sql-only-last-reading-before-the-1st-of-next-month

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

1 Answer

0 votes
by (71.8m points)

So you want something like this?

select number, to_char(sysdate, 'Mon-YYYY') as month_year,
       max(reading) keep (dense_rank first order by modified_date_time desc) as reading
from t
group by number;

The most recent reading for each number along with the current date formatted as Mon-YYYY.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...