U mě to vypadá takto:
select
sum(case when b.materialid = 1 and
to_number(to_char(b.scale_eventdate, 'dd')) between 1 and 15 then
b.scale_weight
end) mtrl1,
--
sum(case when b.materialid = 2 and
to_number(to_char(b.scale_eventdate, 'dd')) between 16 and 31 then
b.scale_weight
end) mtrl2
from datalog_tab b
where to_char(b.scale_eventdate, 'yyyymm') = '202010'
Jinými slovy, zkontrolujte, zda je den scale_eventdate
sloupec patří do 1. nebo 2. poloviny měsíce a součet scale_weight
podle toho.