I have a table QUESTIONNAIRE as below:
The coloumns (EXT1, EXT2, ... are the question's code; the value is the answer for the question)
I have 10000 QuestionnaireID and 50 Question's codes.
I would like to add this into a new table called ANSWER:
Hence, I'll have 50000 row of data. I can also download the data into pandas dataframe. How can I do transform it with sql-query or pandas?
Thanks before. Cheers.