Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select * from Table1 T1
where not exists (select * from Table1 T2 where T1.X = T2.Y and T1.Y = T2.X)
select X, Y from Table1 T1
EXCEPT
select Y, X from Table1 T1