Posts

Showing posts from June, 2022

SUm Example SQL

 SELECT Month(OccurredAt), --AmountIncludingVAT SUM (AmountIncludingVAT)  FROM Cashbook WHERE Year(OccurredAt) = '2022' GROUP BY Month(OccurredAt)