I have a table with a tranaction date and a transaction price. Like so:
- 12/01/08 $1500
- 20/05/08 $1200
- 09/08/15 $2000
- 12/09/15 $3000
I want to be able to find the sum of transactions for each year. How do I add them together. I only know how to add example + example as "example".
Select transaction_id, transaction_date, transaction_amount from transactions_table
Thanks!