Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want to show through select statement to find a duplicate value from a column ..
like i am having this table

stid stname
1 rahul
2 amit
3 abhi
4 rahul
5 rahul


now i want show like that.

stid stname
1 rahul
4 rahul
5 rahul

please help me out from this problem.
Posted

try this
SQL
DECLARE @t TABLE (stid  INT, stname VARCHAR(10))
INSERT INTO @t(stid, stname) VALUES (1, '1')
INSERT INTO @t(stid, stname) VALUES (2, '1')
INSERT INTO @t(stid, stname) VALUES (3, '2')
INSERT INTO @t(stid, stname) VALUES (4, '3')
INSERT INTO @t(stid, stname) VALUES (5, '4')
INSERT INTO @t(stid, stname) VALUES (6, '5')
INSERT INTO @t(stid, stname) VALUES (7, '6')


select * from @t where stname IN ( SELECT stname FROM @t GROUP BY stname HAVING COUNT(stname) > 1)
 
Share this answer
 
Comments
amitkumar5734 9-Feb-13 6:01am    
thnq sir.. thanks a lot.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900