Hello,
I have a table like this:
ID Value1 Value2 Value3 Value4
124422 ABC HGV HGB
213441 HGB KJU
324523 HJU YGH JHU JHY
345523 YGF
There are about 4000 rows with unique ID's and a maximum of 40 value columns.
I want the result to be like this:
ID Value
124422 ABC
124422 HGV
124422 HGB
213441 HGB
213441 KJU
324523 HJU
324523 YGH
324523 JHU
324523 JHY
345523 YGF
Can you please help me with the right code, sql or function to do this?
Hope to hear from you!
Thanks, Sander
I have a table like this:
ID Value1 Value2 Value3 Value4
124422 ABC HGV HGB
213441 HGB KJU
324523 HJU YGH JHU JHY
345523 YGF
There are about 4000 rows with unique ID's and a maximum of 40 value columns.
I want the result to be like this:
ID Value
124422 ABC
124422 HGV
124422 HGB
213441 HGB
213441 KJU
324523 HJU
324523 YGH
324523 JHU
324523 JHY
345523 YGF
Can you please help me with the right code, sql or function to do this?
Hope to hear from you!
Thanks, Sander
Comment