[Solved] Write SQL query to fetch data from below table [closed]


This is not the complete solution. Just a hint for you to do your homework.

select a.column3 + b.column3 from
mytable a, mytable b
where a.column1 = b.column2
and a.column2 = b.column1;

solved Write SQL query to fetch data from below table [closed]