Ik stel voor om de vraag te schrijven als:
select sum(i.amount) as total
from incomes i
where i.date >= '2019-07-01' and
i.date < '2019-08-01' and
i.deleted_at is null;
Deze zoekopdracht kan profiteren van een index op incomes(deleted_at, date, amount)
:
create index idx_incomes_deleted_at_date_amount on incomes(deleted_at, date, amount)