고객 리스트에서 서로 같은 도시에 사는 사람들의 쌍을 구해보는 쿼리 예제

 


SELECT A.CustomerName AS CustomerName1, B.CustomerName AS CustomerName2, A.City
FROM Customers as A, Customers as B
WHERE (A.CustomerID <> B.CustomerID AND A.City = B.City)
ORDER BY A.City;

A.CustomerID <> B.CustomerID 가 있는 이유는 자기 자신을 배제하기 위함.

 

결과

 

 

 

 

+ Recent posts