Hi,
we are currently evaluating ICE and a trial IEE and none of them can calculate in the select clause. We are doing this in many cases.
Assume the following case:
I have a dimension “How do you like product x?” with ten categories (1=very much, 10=not at all) and a region variable.
This is what we are doing in many cases:
SELECT COUNT(*),region,AVG(product),SUM(IF(product IN (1,2),1,0)),SUM(IF(product IN (9,10),1,0)) FROM table GROUP BY region
After this i know how many people really love my product in which region and how many hate it ![]()
This is currently not possible in infobright and we are using clauses like this very very often. I have tried to rewrite the query with a left join but still no luck. This is even a simple use case.
Is there any chance that this will be available in the near future? :S
Furthermore we are desperatly missing the STDDEV_*() functions which i think should be relativly easy to implement.
