I have this flat file that I import and it needs to be unpivoted. All works well except that I would like that the unpivot makes the rows even is the value is null.
I don't want to resort to some sort of hack to add -1 and replace the -1 after.
The software that uses the database expect to have always 3 rows for each line that was imported from the flat file even if it has null for value.
Some drawing to explain the problem
flat file line
----------------------------------------------------------------- |id of person | code1 | value1 | code2 | value2 | code3 | value3| ----------------------------------------------------------------- |123 | hh1 | hh2 | 2 | hh3 | | | ----------------------------------------------------------------- What I get is ------------------------------ |id of person | code | value | ------------------------------ |123 | hh2 | 2 | ------------------------------ what I want ------------------------------ |id of person | code | value | ------------------------------ |123 |hh1 | null | ------------------------------ |123 |hh2 | 2 | ------------------------------ |123 |hh3 | null | ------------------------------