sql >> Databáze >  >> RDS >> Mysql

mysql SELECT nejlepší z každé kategorie v jedné tabulce

Zkuste toto:

SELECT gamers.*
FROM gamers
INNER JOIN 
 (SELECT 
   max(score) as maxscore, 
   gameid from gamers
   GROUP BY gameid) AS b
ON (b.gameid = gamers.gameid AND b.maxscore=gamers.score) ;
ORDER BY score DESC, gameid;

Výsledkem bude:

+---------+--------+-------+
| gamerid | gameid | score |
+---------+--------+-------+
|       4 |      1 |    90 |
|       5 |      2 |    40 |
|       8 |      3 |    30 |
+---------+--------+-------+
3 rows in set (0.00 sec)

Další možností, kterou můžete udělat, je vytvořit dočasnou tabulku nebo pohled (pokud se vám nelíbí dílčí dotaz).

create temporary table games_score (
 SELECT max(score) as maxscore, gameid FROM gamers GROUP BY gameid
);

Potom:

SELECT gamers.* 
FROM gamers 
INNER JOIN games_score AS b ON (b.gameid = gamers.gameid AND b.maxscore=gamers.score) 
ORDER BY score DESC, gameid;

NEBO pohled:

create or replace view games_score AS 
SELECT max(score) as maxscore, gameid FROM gamers GROUP BY gameid;

Potom:

SELECT gamers.* 
FROM gamers 
INNER JOIN games_score AS b ON (b.gameid = gamers.gameid AND b.maxscore=gamers.score) 
ORDER BY score DESC, gameid;


  1. Kód chyby:1064 v mysql

  2. Kontingenční tabulka MySQL pomocí java

  3. PDO - dotaz nedává žádné výsledky

  4. Jak vyprázdnit statistiky performance_schema bez restartování MySQL?