sql >> Database >  >> RDS >> Mysql

Top 3 scores - MySQL

SELECT name, score
FROM SCORES
JOIN (SELECT distinct score score3
      FROM scores
      ORDER BY score DESC
      LIMIT 2, 1) x
ON score >= score3
ORDER by score DESC

FIDDLE



  1. MySQL-coderingsprobleem - Verschillende resultaten van Windows tot Linux

  2. Geneste Select met Zend Db

  3. MySQL-optimalisatie op samenvoegtabellen met bereikcriteria

  4. PHP - MySQL-query met Paginering