I have a data set in which I need each issue to have 3 rows. 1 for each status that is possible. Below is an example of what I currently have.
Issue Status Time
-------------------
1 SLM 30
1 SNB 43
1 EOB 22
2 SLM 12
2 EOB 87
I need something like this, where is an issue doesn't have a status then a row is added and 0 is set for the time.
Issue Status Time
----------------------
1 SLM 30
1 SNB 43
1 EOB 22
2 SLM 12
2 EOB 87
2 SNB 0
How can I do this?