直接写sql语句
select 日期, sum(收入) as 月收入, sum(支出) as 月支出 from ( select 日期, 收入, 0.0 as 支出 from {收入表} union all select 日期, 0, 支出 from {支出表}) where 日期 is not null group by 日期