: 데이터를 위아래로 연결
Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1.
Write a query to output all such symmetric pairs in ascending order by the value of X. List the rows such that X1 ≤ Y1.
Sample Input
- X=Y
- X1 = Y2, X2 = Y1 인 경우로 케이스를 나눈다.
- UNION : 중복을 제거하고 위아래로 붙힌다.
- ORDER BY X : 정렬은 맨 마지막에 한다.