opticalman
Programmer
I have table of amounts paid during the day. The following will give me a list of daily totals
select date , sum(paid)
from ledger
group by date
order by date
Is there a way I can get a list of Monthly or Annual totals?
Thanks in advance.
Jim Rumbaugh
select date , sum(paid)
from ledger
group by date
order by date
Is there a way I can get a list of Monthly or Annual totals?
Thanks in advance.
Jim Rumbaugh