Following on from this question I posed earlier, say I want to add ID
to the query:
SELECT client, ID, job_type, SUM(actual_value_fee) FROM jo2details GROUP BY client, job_type WITH ROLLUP
but I don't want MySQL to try to total the ID
column as it's an identifier for the records on the table rather than something "summable". How can I exclude ID
from the WITH ROLLUP
please?