Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データ入力ポリシーが不十分なため、同じ顧客に対して重複する電話番号が多数あります。同じ電話番号を持つすべての顧客を一覧表示するクエリを作成する必要があります。
ご協力いただきありがとうございます。
;WITH dupes AS ( SELECT Phone_Number FROM dbo.Customer_Table GROUP BY Phone_Number HAVING COUNT(*) > 1 ) SELECT c.Customer_Name, dupes.Phone_Number FROM dupes INNER JOIN dbo.Customer_Table AS c ON dupes.Phone_Number = c.Phone_Number;