sql >> Database >  >> RDS >> Sqlserver

SQL-groep en som per maand - standaard op nul

In het verleden heb ik een probleem als dit opgelost door een tijdelijke tabel te maken die alle benodigde datums bevat:

    CREATE TABLE #AllDates (ThisDate datetime null)
    SET @CurrentDate = @StartRange

    -- insert all dates into temp table
    WHILE @CurrentDate <=  @EndRange
        BEGIN
            INSERT INTO #AllDates values(@CurrentDate)
            SET @CurrentDate = dateadd(mm, 1, @CurrentDate)
        END

Pas vervolgens uw zoekopdracht aan om mee te doen aan deze tabel:

SELECT      ALLItems.ItemId,
            SUM(COALESCE(Inventory.Qty, 0)) AS Individual_MonthQty,
            MONTH(#AllDates.ThisDate) AS Individual_MonthAsNumber,
            DATENAME(MONTH, #AllDates.ThisDate) AS Individual_MonthAsString
FROM        #AllDates
            JOIN (SELECT DISTINCT dbo.Inventory.ItemId FROM dbo.Inventory)  AS ALLItems ON 1 = 1
            LEFT JOIN Inventory ON DATEADD(dd, - DAY(Inventory.dadded) +1, Inventory.dadded) = #AllDates.ThisDate AND ALLItems.ItemId = dbo.Inventory.ItemId
WHERE       
            #AllDates.ThisDate >= @StartRange
AND         #AllDates.ThisDate <= @EndRange
GROUP BY    ALLItems.ItemId, 
            #AllDates.ThisDate

Dan zou u voor elke maand een record moeten hebben, ongeacht of deze in Inventaris aanwezig is.



  1. Beperk resultaten van samengevoegde tabel tot één rij

  2. SQL Server bcp-hulpprogramma en het numerieke gegevenstype

  3. Vergelijk twee identieke tabellen MySQL

  4. INSERT INTO @TABLE EXEC @query met SQL Server 2000