select
p.*,
cpm.id as idCustomerPaymentMethod
from Project as p
inner join CustomerPaymentMethod as cpm
on cpm.idCustomer=p.idCustomer
where p.automaticCharge='1'
and p.cutoff<='2026-07-30'
and cpm.status='1'
and EXISTS(
select *
from Movement as m
where m.idObj=p.id
and m.objType='2'
and m.registered between '2026-07-25 10:55:06' and '2026-07-30 10:55:06'
and m.status='1'
)
group by p.id
0