i would like to ask for help please in sql, I have a table in this form
ID | Indicator1 | Indicator2 | Indicator3 | Indicator4
1 | 1 | 0 | 0 | 0
2 | 0 | 1 | 1 | 0
3 | 1 | 1 | 0 | 0
4 | 0 | 0 | 0 | 0
And I would like to make it look like this
ID | Indicators
1 | Indicator1
2 | Indicator2
2 | Indicator3
3 | Indicator1
3 | Indicator2
4 | NULL
Any suggestions please ? Thank you