Hi,
I'm thinking there's gotta be a way to do this. I have a query like this:
SELECT response_demo011
FROM surveys
WHERE response_pcode < '999990'
AND response_completed_on != ''
LIMIT 0 , 30
In my live table, this returns 120 rows, the values in the response_demo011 field are integers, and there three different values OR null values in the response_demo011 column. Can I run this query ONCE and somehow count the number of 5's in that response_demo011 column, the number of 6's, and then the number of 7's? Or, do I need to run a separate query to get each count?
Thx,
Shaun