SELECT A.CustomerName AS Customer1, B.CustomerName AS Customer2, A.Country FROM Customers AS A INNER JOIN Customers AS B ON A.Country = B.Country WHERE A.CustomerID < B.CustomerID;
Click Run to execute this code.