Query to display spent credits from transactional table

后端 未结 2 526
萌比男神i
萌比男神i 2021-02-12 21:55

I am working with a table that contains credit transactions where I want to display who\'s credits were spent when a sale is made.

In the table:

  • Cre
2条回答
  •  无人共我
    2021-02-12 22:40

    try this:

    WITH Credits_added AS (
        SELECT CreditLogId, OccurredOn, credits
        , SUM(credits) OVER (ORDER BY CreditLogId) - credits AS b --before
        , SUM(credits) OVER (ORDER BY CreditLogId) AS a --after
        , GivenByUserCode
        FROM @CreditLogs
        WHERE Credits > 0)
    , Credits_spent AS (
        SELECT CreditLogId, OccurredOn, credits
        , SUM(credits) OVER (ORDER BY CreditLogId) * -1 + credits AS b
        , SUM(credits) OVER (ORDER BY CreditLogId) * -1 AS a
        FROM @CreditLogs
        WHERE Credits < 0)
    SELECT s.CreditLogId, s.OccurredOn
    , CASE WHEN a.a > s.a THEN s.a ELSE a.a END - CASE WHEN a.b > s.b THEN a.b ELSE s.b END AS Credits 
    , a.GivenByUserCode
    FROM Credits_added AS a
    INNER JOIN Credits_spent AS s ON a.a > s.b AND s.a > a.b
    

提交回复
热议问题