Under den antagelse (bekræftet i kommentarerne), at de eneste tre statusser er yes
, no
og ney
, den enkleste ting er måske bare at count
betinget case
udsagn:
SELECT name,
COUNT(CASE status WHEN 'yes' THEN 1 ELSE NULL END) AS yes,
COUNT(CASE status WHEN 'no' THEN 1 ELSE NULL END) AS no,
COUNT(CASE status WHEN 'ney' THEN 1 ELSE NULL END) AS ney,
COUNT(*) AS total
FROM mytable
GROUP BY name