select o1.prod_id, o1.quantity
from OrderItems o1
where o1.quantity=100
union 
select o2.prod_id,o2.quantity
from OrderItems o2
where o2.prod_id like 'BNBG%'
order by prod_id;