Hey everyone I have two tables with output like this:
Month_Table
I need to calculate the monthly revenue by channel and the previous month's revenue: I did this query but it is not completed
Select date_created, channel, sum(revenue) as monthly_revenue
from transaction_table
GROUP BY date_created,channel
The result should be displaying monthly revenue and the month's revenue of previous month.
How can I do that?
try this code .
output:
OR use this query
output: