sql >> Database >  >> RDS >> Sqlserver

Som resultaten van twee select statements

Probeer dit

SELECT PerceptionistID, SSNLastFour, SUM(CommissionPay) CommissionPay,
        SUM(PTOPay) PTOPay, SUM(HolidayPay) HolidayPay, SUM(Overtime) Overtime, SUM(TotalPay) TotalPay
FROM
(
    SELECT  PerceptionistID, SSNLastFour, CommissionPay,
        PTOPay, HolidayPay, Overtime, TotalPay
    FROM [dbo].fnCalculateCommissionForWeekOf(@MondayOfCurrentWeek)

    UNION ALL

    -- Need to get the following week's data and sum the two together
    SELECT  PerceptionistID, SSNLastFour, CommissionPay,
        PTOPay, HolidayPay, Overtime, TotalPay
    FROM [dbo].fnCalculateCommissionForWeekOf(@MondayOfFollowingWeek)
) t
GROUP BY PerceptionistID, SSNLastFour


  1. ZF2 al actieve query verhindert uitvoering

  2. Volg niet-deterministische MySQL-fouten in Perl

  3. Sessievariabelen:hoeveel data is te veel?

  4. Hoe al onze afbeeldingen van een VARBINARY(MAX)-veld in SQL Server 2008 naar het bestandssysteem te dumpen?