I have two tables A and B. Both tables have 58 columns per table.
Table "A" has Column1, Column2, Column3, Column4, Column5, A1, A2, A3,...,A53.
Table "B" has Column1, Column2, Column3, Column4, Column5, B1, B2, B3,...,B53.
I have used FULL OUTER JOIN. And I have output,
My Output table "MOT" has Column1, Column2, Column3, Column4, Column5, A1, A2, A3,...,A53, Column1, Column2, Column3, Column4, Column5, B1, B2, B3,...,B53.
I want following output.
Output Table "OT" has Column1, Column2, Column3, Column4, Column5, A1, A2, A3,...,A53, B1, B2, B3,...,B53.
So i do not want duplicate columns in the output.
I appreciate your help. Thank you.