A.select productid from orders where count (productid)>1
B.select productid from orders where max (productid)>1
C.select productid from orders where having count(productid)>1group by productid
D.select productid from orders group by productid having count(productid)>1