列の値が明確でないすべての行を返すselectステートメントを実行する必要があります(EmailAddressなど)。
たとえば、テーブルが次のようになっている場合:
CustomerName EmailAddress
Aaron aaron@gmail.com
Christy aaron@gmail.com
Jason jason@gmail.com
Eric eric@gmail.com
John aaron@gmail.com
返すクエリが必要です:
Aaron aaron@gmail.com
Christy aaron@gmail.com
John aaron@gmail.com
私は多くの投稿を読み、無駄にさまざまなクエリを試しました。私がうまくいくと思う質問は以下の通りです。誰かが代替案を提案したり、私のクエリの何が問題になっているのか教えてもらえますか?
select EmailAddress, CustomerName from Customers
group by EmailAddress, CustomerName
having COUNT(distinct(EmailAddress)) > 1