Create table #Tbl
(
ID int not null,
Keyword nvarchar(max)
)
Insert into #Tbl Values ('0','Cryptography')
Insert into #Tbl Values ('1','Cryptography')
Insert into #Tbl Values ('4','Cryptography')
Insert into #Tbl Values ('0','SQL')
Insert into #Tbl Values ('0','SQL')
Insert into #Tbl Values ('3','Cloud Computing')
Insert into #Tbl Values ('6','Recursion')
Insert into #Tbl Values ('8','Recursion')
Insert into #Tbl Values ('0','Universe')
Insert into #Tbl Values ('0','Universe')
Insert into #Tbl Values ('7','Universe')
複数の ID があり、少なくとも 1 つの ID がゼロであるタイトルを取得する必要があります。
したがって、期待される結果は次のようになります。
Cryptography
Universe
以下のクエリを試しましたが、「少なくとも 1 つの ID がゼロです」という条件を追加できませんでした
select Keyword,COUNT(distinct id) from #Tbl
group by Keyword
having COUNT(distinct id)>1
どうすればここに進むことができますか? ご協力いただきありがとうございます。