select sum(count), max(productNo)
from Table
where date between 117 and 118
group by product, productNo
with this it works 🙂
1
solved How to sum when they have same color with sql?
select sum(count), max(productNo)
from Table
where date between 117 and 118
group by product, productNo
with this it works 🙂
1
solved How to sum when they have same color with sql?