Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

टी-एसक्यूएल चयन सभी महीनों को वर्षों की एक सीमा के भीतर प्राप्त करें

गोश लोग ... "रिकर्सिव सीटीई की गिनती" या "आरसीटीई" का उपयोग करना लूप का उपयोग करने से भी बुरा या बुरा है। मैं ऐसा क्यों कह रहा हूँ, इसके लिए कृपया निम्नलिखित लेख देखें।

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

गिनती आरसीटीई के "छिपे हुए आरबीएआर" सहित किसी भी आरबीएआर के बिना इसे करने का एक तरीका यहां दिया गया है।

--===== 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
;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. उदाहरण के साथ SQL जॉइन प्रकारों का अवलोकन

  2. .NET से एसएसआईएस पैकेज कैसे निष्पादित करें?

  3. मुझे स्पार्स कॉलम का उपयोग क्यों और कब करना चाहिए? (एसक्यूएल सर्वर 2008)

  4. दो पंक्तियों में दो मानों को स्विच करने के लिए SQL अद्यतन विवरण

  5. DATETIMEFROMPARTS () SQL सर्वर में उदाहरण (T-SQL)