sql >> Database >  >> RDS >> Mysql

MySQL groeperen op met volgorde/prioriteit van een andere kolom

Je kunt dat MAX-voorbeeld gebruiken, je hoefde het alleen maar te "faken". Zie hier:http://sqlfiddle.com/#!2/58688/5

SELECT *
FROM test
JOIN (SELECT 'west' AS direction, 4 AS weight
      UNION
      SELECT 'north',3
      UNION
      SELECT 'south',2
      UNION
      SELECT 'east',1) AS priority
  ON priority.direction = test.direction
JOIN (
      SELECT route, MAX(weight) AS weight
      FROM test
      JOIN (SELECT 'west' AS direction, 4 AS weight
            UNION
            SELECT 'north',3
            UNION
            SELECT 'south',2
            UNION
            SELECT 'east',1) AS priority
        ON priority.direction = test.direction
      GROUP BY route
) AS t1
  ON t1.route = test.route
    AND t1.weight = priority.weight


  1. Hoe een .sql-bestand exporteren en importeren vanaf de opdrachtregel met opties?

  2. SQL BUITENLANDSE SLEUTEL

  3. flake8 klaagt over booleaanse vergelijking ==in filterclausule

  4. Trage MySQL-inserts