N
nathan_savidge
Hi
I have a union query that basically, puts all the results from 16 queries
into 1, as desired. However, due to the names of the fields, i have had to
structure my query as:
Select result_query1,0,0,0
UNION
Select 0,result_query2,0,0
UNION
Select 0,0,Result_query3,0
This works, but i would like this to read as Result 1,Result2,result3
The way that i have done it, i get the first result, then 0's, then 0's then
2nd result followed by 0's and so on.
Is there a way to have it such as:
Result 1 Result 2 Result 3
Name
With no 0's
Thanks
I have a union query that basically, puts all the results from 16 queries
into 1, as desired. However, due to the names of the fields, i have had to
structure my query as:
Select result_query1,0,0,0
UNION
Select 0,result_query2,0,0
UNION
Select 0,0,Result_query3,0
This works, but i would like this to read as Result 1,Result2,result3
The way that i have done it, i get the first result, then 0's, then 0's then
2nd result followed by 0's and so on.
Is there a way to have it such as:
Result 1 Result 2 Result 3
Name
With no 0's
Thanks