select prod_id, quantity
from OrderItems
where quantity = 100 or prod_id like 'BNBG%'
order by prod_id;

只使用一个select,但是是多条件,使用or连接