sql >> Database teknologi >  >> RDS >> Mysql

VÆLG id, DER HAR maksimalt antal id

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;


  1. Sådan forbinder du Amazon RDS i iOS

  2. MacOSX homebrew mysql root adgangskode

  3. SQL 'AND' eller 'OR' kommer først?

  4. KONTROLLER begrænsning på fødselsdato?