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

Fazendo cálculos em sql


Acho que adicionar a seguinte expressão case à sua instrução select deve fazer isso:
CASE WHEN 
   SUM(LandingDetails.Quantity * LandingDetails.UnitPrice) 
   - 
   SUM(LandingDetails.Quantity * LandingDetails.UnitPrice) * DeductionRate + WeeklyDeductionRate 
   > FromMinimumReturn 
THEN SUM(LandingDetails.Quantity * LandingDetails.UnitPrice) * DeductionRate + WeeklyDeductionRate
ELSE 0 END
AS TotalDeductions

No entanto, isso tem muito código repetido (o cálculo Owed), então eu envolveria a consulta original em uma expressão de tabela comum e faria assim:
WITH cte AS (
  <<<your original query here>>> -- I left it out to save space...
)

SELECT 
    ContactId,
    Owed,
    WeeklyDeductionRate,
    FromMinimumReturn,
    DeductionRate,
    CASE 
       WHEN Owed - (Owed * DeductionRate + WeeklyDeductionRate) > FromMinimumReturn 
       THEN Owed * DeductionRate + WeeklyDeductionRate
       ELSE 0 END
    AS TotalDeductions
FROM cte

Isso retornará para TotalDeductions calculado se subtrair de Owed deixar um resultado sobre FromMinimumReturn, caso contrário, retornará 0 para TotalDeductions.