|< < 37 > >|

Aggregation with grouping

There can be multiple aggregating expressions.
select purchase_date, sum(total_due), sum(unpaid), count(*) from purchase group by purchase_date

|< < 37 > >|