вы можете использовать объединение и сравнение
with cte as
(
select 'Delhi' as source, 'Mumbai' as destination, 100 as fare
union all
select 'Mumbai' as source, 'Delhi' as destination, 100 as fare
union all
select 'London','New York',500
) select source,destination,fare from cte
where source<destination
union
select source,destination,fare
from cte where source<destination
выход
source destination fare
Delhi Mumbai 100
London New York 500