The SQL query in my web application (PHP / MySQL + Zend) uses a number of parameters to build the search query. However, the resulting records must be grouped into two columns in order to get the totals. With ROLLUP, it seems like a good solution for finding subtotals, but Zend_Db_Select does not support this modifier. Is there any work around?
source
share