Totaling Cash Values with Date Filtering in SQL
As you mentioned, you have a SQL statement that calculates the total cash for each unique transaction ID using the following line:
select sum(cash) from Table a where a.branch = p.branch and a.transID = p.transID) TotalCash
To modify this statement to only total cash values that have a value date within the last month, you can update it in the following way:
select SUM(CASE WHEN ValueDate > @startMonthDate THEN cash ELSE 0 END) from Table a where a.branch = p.branch and a.transID = p.transID) TotalMonthCash
SUM()
: This function is used to calculate the total of the cash values that meet the date filtering criteria.免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3