sql no duplicate rows in table code example
Example 1: t-sql get duplicate rows
SELECT [CaseNumber], COUNT(*) AS Occurrences
FROM [CaseCountry]
GROUP BY [CaseNumber]
HAVING (COUNT(*) > 1)
Example 2: how to query without duplicate rows in sql
SELECT DISTINCT col1,col2... FROM table_name where Condition;