select prod_id,quantity
from OrderItems
where prod_id like 'BNBG%'
union
select prod_id,quantity
from OrderItems
where quantity=100
order by prod_id asc