I have few items item1 item2 item3 item4.. item10
I would like to have a view in sql where I have them in a column
Items
------
item1
item2
item3
item4
....
....
....
item10
any suggestions would be appreciated! the below what i have tried
select case when item1 in item1 then item1
when item2 in item2 then item2
end as Items
from dummy
it didn't work