SELECT color_id AS id, COUNT(color_id) AS count
FROM products
WHERE item_id = 1234 AND color_id IS NOT NULL
GROUP BY color_id
ORDER BY count DESC
LIMIT 1;
Dette vil give dig color_id og antallet af det color_id sorteret efter antallet fra størst til mindst. Jeg tror, det er det, du vil have.
til din redigering...
SELECT color_id, COUNT(*) FROM products WHERE color_id = 3;