Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

t-sql select obter todos os meses dentro de um intervalo de anos


Puxa pessoal... usar um "CTE recursivo de contagem" ou "rCTE" é tão ruim ou pior do que usar um loop. Por favor, veja o seguinte artigo para saber por que eu digo isso.

http://www.sqlservercentral.com/articles/T-SQL/74118/

Aqui está uma maneira de fazer isso sem qualquer RBAR, incluindo o "RBAR oculto" de um rCTE de contagem.
--===== Declare and preset some obviously named variables
DECLARE @StartDate DATETIME,
        @EndDate   DATETIME
;
 SELECT @StartDate = '2010-01-14', --We'll get the month for both of these 
        @EndDate   = '2020-12-05'  --dates and everything in between
;
WITH
cteDates AS
(--==== Creates a "Tally Table" structure for months to add to start date
     -- calulated by the difference in months between the start and end date.
     -- Then adds those numbers to the start of the month of the start date.
 SELECT TOP (DATEDIFF(mm,@StartDate,@EndDate) + 1)
        MonthDate = DATEADD(mm,DATEDIFF(mm,0,@StartDate) 
                  + (ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) -1),0)
   FROM sys.all_columns ac1
  CROSS JOIN sys.all_columns ac2
)
--===== Slice each "whole month" date into the desired display values.
 SELECT [Year]  = YEAR(MonthDate),
        [Month] = MONTH(MonthDate) 
   FROM cteDates
;