Microsoft
Software
Hardware
Network
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
Required permissions cannot be acquired. .NET app error
Invalid Printer Exception - when no printers are installed
PAGE_FAULT_IN_NONPAGED_ARE<wbr />A during Startup
popup dialogue box for a query
Problem with device installing in WXPe
Left Outer Join is not working- returns duplicate company names?
Access Form selecting specific records
Number of days between two dates
How can I check when CType fails?
ASP.NET reading, creating Excel files