i have one Table
(column 1, Column 2 ) ---Src table
0 1
0 1
0 1
1 0
1 0
1 1
1 1
Destination table suppose to be like this using derived table Expression
means If Column 1has value 1 then Load value "ABC" to destination
If column 2has value 1 then load value "DEF" to destination
and if both has 1 then load value "ABC"
(column)----->Destination table
DEF
DEF
DEF
ABC
ABC
ABC
ABC