I want to calculate the percentage of elected people for each member type, I was able to do this:
SELECT Member, COUNT(Name) * 100 /
(SELECT COUNT(*) FROM 'results' WHERE Member= '1' ) AS 'perc'
FROM 'results'
WHERE elected='yes' AND Member = '1'
but I want to do it for all the member values (so also '0')
My table looks like this:
Name member Elected
----------------------------
joe 0 yes
ann 1 no
jef 0 no
this is the result I want:
Member Percentage
---------------------
0 50%
1 0%