Question : SQL Query Dups

I need I query to show the dups in a table based on two fields

How do I select all the rows in table Product_Detail that have ItemNumber and ProductNumber more than once

Answer : SQL Query Dups

SELECT ItemNumber, ProductNumber, COunt(*)
FROM  Product_Detail
GROUP BY  ItemNumber, ProductNumber
HAVING COUNT(*) > 1
Random Solutions  
 
programming4us programming4us