Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

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

How to iterate this SQL query to go through specific date range?

I am needing to extract three months at a time of one year for years 2016-2020. For example I need Jan-March in one file, Apr-Jun in another, etc. for each year.

The beginning of my SQL looks like so but I need it to go through years 2016-2020, extracting data three months at time.

    DECLARE @StartDateKey int = 20160101,
                @EndDateKey int = 20160331;

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

1 Answer

0 votes
by (71.8m points)

You code looks like SQL Server. You can use a recursive CTE:

with dates as (
      select convert(date, '20160101') as dte
      union all
      select dateadd(month, 3, dte)
      from dates
      where dte < '20201001'
     )
select *
from dates;

Here is a db<>fiddle.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...