sql >> Database teknologi >  >> RDS >> Sqlserver

SQL-forespørgselsaggregater vises muligvis ikke i WHERE-sætningen

Brug HAVING som antydet af fejlmeddelelsen, som kræver en GROUP BY :

SELECT
    SUM(M1.InvoiceTotal)-SUM(M1.AmountApplied) as PastDueAmount, 
    M1.BillingID, M2.Name, 
    M2.DelinquentDaysThreshold, M2.DelinquentAmountThreshold,
    DATEDIFF(d, MIN(BillingDate),GETDATE()) as DaysLate
FROM
    Invoices M1
    LEFT JOIN
    ClientAccounts M2 ON M1.BillingID = M2.ID
WHERE
    InvoiceTotal <> AmountApplied
    AND
    M2.DelinquentDaysThreshold > DATEDIFF(d, MIN(BillingDate),GETDATE())
GROUP BY
    M1.BillingID, M2.Name, 
    M2.DelinquentDaysThreshold, M2.DelinquentAmountThreshold,
    DATEDIFF(d, MIN(BillingDate),GETDATE())
HAVING
    (SUM(M1.InvoiceTotal)-SUM(M1.AmountApplied)) > M2.DelinquentAmountThreshold


  1. Avanceret MySQL:Find sammenhænge mellem afstemningssvar

  2. PHP - IE viser ikke opdaterede værdier fra databasen. Chrome, FF, Opera - OK

  3. C# DateTime MySQL-kommando

  4. fjern gamle poster gruppering efter tre kolonner og sortering efter dato