Let me take straight away a concrete example. I have one table that look like this:
id,john,jack,jimy
 1,22,NULL,NULL
 2,NULL,55,66
I would like to know if it is possible with an sql to change that table to the following table:
id,person,value
 1,john,22
 2,jack,55
 3,jimy,66
 
     
     
    