Hi, I have one weird requirement. In a SQL table, I have two columns of same type, say type ObjA. The values in these two columns repeats.
e.g. ObjA_Column1 ObjA_Column2
obj1 obj2
obj2 obj3
obj1 obj2
obj3 obj4
obj4 obj5
I want a query that merge two column elements distinctively i.e.
ObjA_TembColumn
obj1
obj2
obj3
obj4
obj5
Please help.
Thanks Pankaj