उन सभी उत्पादों को ढूंढें जिन्हें 1 या अधिक बार ऑर्डर किया गया है... (डुप्लिकेट रिकॉर्ड की तरह)
SELECT DISTINCT * from [order_items] where productid in
(SELECT productid
FROM [order_items]
group by productid
having COUNT(*)>0)
order by productid
उनमें से अंतिम सम्मिलित का चयन करने के लिए...
SELECT DISTINCT productid, MAX(id) OVER (PARTITION BY productid) AS LastRowId from [order_items] where productid in
(SELECT productid
FROM [order_items]
group by productid
having COUNT(*)>0)
order by productid