Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Query Question
Message
 
 
To
29/01/2014 12:06:13
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2012
Application:
Web
Miscellaneous
Thread ID:
01592560
Message ID:
01592564
Views:
60
This message has been marked as a message which has helped to the initial question of the thread.
>The company table has a name column char(25) and a comp_code column char(4).
>The comp_code column is unique, but there are duplicates in the name column.
>
>I'm trying to design a query that will give the name once and the comp_code associated with that name.
>For duplicates, it doesn't matter which comp_code appears, so long as it is associated with that name.
>Any ideas?
;with cte as (select *, row_number() over (partition by [name] order by comp_code) as Rn from Companies)

select * from cte where Rn = 1 -- only one of the duplicate names will be displayed with min code
There is also a new article in TechNet Wiki for TechNet Guru competition

http://social.technet.microsoft.com/wiki/contents/articles/22706.how-to-remove-duplicates-from-a-table-in-sql-server.aspx
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform