sql >> Databasteknik >  >> RDS >> Mysql

MySQL SELECT från flera tabeller, flera GROUP BY och group_concat?

SELECT Leaderboard.Name,
  (SELECT Actions.Action
   FROM Actions
   WHERE Actions.Name = Leaderboard.Name
     AND Actions.Action LIKE 'Ate%'
   ORDER BY Time DESC
   LIMIT 1
  ) AS Latest_Action,
  GROUP_CONCAT(Items.Item
               ORDER BY Items.Time DESC
               SEPARATOR ', '
              ) AS Items
FROM Leaderboard
     LEFT JOIN Items ON Leaderboard.Name = Items.Name
GROUP BY Leaderboard.Name
HAVING Latest_Action IS NOT NULL
ORDER BY Leaderboard.Score DESC

Resultat verifierat i SQL Fiddle .




  1. Få innehållet i docx-filen som sparats i mysql dabase som blob-typ i php

  2. SKAPA Oracle-procedur

  3. 6 sätt att lägga till ett år till ett datum i MariaDB

  4. Välj dubbletter från en enda rad?