I持つSQL Serverの2012年に、次の表に基づいて重複を排除します。結果はこのようにすべきである:私はそれは一時テーブルまたは句のように異なるアプローチを用いて達成することができるかどうかわからないのですSQL Serverは:私はその接点に等しい「自分」だけの個別の行とを選択する必要が</p> <p><a href="https://i.stack.imgur.com/ZInN5.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ZInN5.png" alt="enter image description here"></a></p> <p>:2列
with cte as
(
select
row_number() over (partition by contact order by SiteNum) rn,
SiteNum, SiteAdd, Description, Contact
from
Name
)
select *
from cte
where rn = 1
:
を私は次のクエリを試してみました。あなたはまた、行全体に明確なを置くことができる
Select DISTINCT SiteAdd from table where Contact = 'Own'
を期待している何句はあなたを与える必要があり
contact = 'Own'の場所を含めると、行番号2(SiteNum 2)は返されません。 – user2536008