Is there a simple way to produce the following output?
QUERY RESULT
Type Value
---- -----
A 1
B 5
C
D -3
E
F 10
(ie: includes rows which don't exist in the table it's getting the data from)
DATA SET (table)
Type Value
---- -----
A 1
B 5
D -3
F 10
I'm currently using a fairly roundabout way to achieve this and would like to simply it if possible.
QUERY RESULT
Type Value
---- -----
A 1
B 5
C
D -3
E
F 10
(ie: includes rows which don't exist in the table it's getting the data from)
DATA SET (table)
Type Value
---- -----
A 1
B 5
D -3
F 10
I'm currently using a fairly roundabout way to achieve this and would like to simply it if possible.