Tìm tất cả các sản phẩm đã được đặt hàng 1 hoặc nhiều lần ... (loại hồ sơ trùng lặp)
SELECT DISTINCT * from [order_items] where productid in
(SELECT productid
FROM [order_items]
group by productid
having COUNT(*)>0)
order by productid
Để chọn phần cuối cùng được chèn ...
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