Hi
This is the request i want to do :
select value from
(
select sum(field1) as value from MyIndex
union
select sum(field2) as value from MyIndex
union
select sum(field3) as value from MyIndex
) test
however, I have this issue :
the objectif ofthe request is to generate a Pie chart splited accroding the column generated.
Thanks !