I have this query:
resulting in:
Now I want to add row headings, so I get:
Can this be done? I have tried to read books and search at the web, but I have obviously been searching at wrong places...
-ViAn-
Code:
select sum(param_1) "PARA1", sum(param_2) "PARA2" from (...)
union
select max(param_1), max(param_2) from (...)
Code:
PARA1 PARA2
[value of sum(param_1)] [value of sum(param_2)]
[value of max(param_1)] [value of max(param_2)]
Code:
PARA1 PARA2
Sum: [value of sum(param_1)] [value of sum(param_2)]
Max: [value of max(param_1)] [value of max(param_2)]
Can this be done? I have tried to read books and search at the web, but I have obviously been searching at wrong places...
-ViAn-