Hi, on many occasions we want to search some repeated values in one or more columns. It is quite simple to do this...
select ColumnName, count(ColumnName) as NumberOfTimes
from TableName
Group By ColumnName
having (count(ColumnName) > 1)
At the same time, there is also a requirement to find how many rows with primary key have duplicate values:
select PrimaryKeyColumn,
from TableName
where ColumnNamein (
select ColumnName
from TableName
group by ColumnName
having (count(ColumnName) > 1