Untitled

 avatar
unknown
plain_text
2 years ago
262 B
6
Indexable
WITH DuplicateRows AS (
    SELECT *,
           COUNT(*) OVER (PARTITION BY VendorCode, SourceLoc, Destination, EquipmentType, ShippingType, HazardousMaterials) AS DuplicateCount
    FROM your_table_name
)

SELECT *
FROM DuplicateRows
WHERE DuplicateCount > 1;
Editor is loading...