sql >> Database >  >> RDS >> PostgreSQL

SQL ORDER BY met CASE met UNION ALL

Zet alles in een andere SELECT:

SELECT * FROM (
  SELECT "Field1" AS field_1, "Field2" AS field_2,
  "Field3" AS field_3, "Field4" AS field_4
  FROM "TableName" 
  WHERE condition
  AND other_condition
  UNION ALL
  SELECT "Field1" AS field_1, "Field2" AS field_2,
  "Field3" AS field_3, "Field4" AS field_4
  FROM "TableName" 
  WHERE yet_another_condition
  AND yet_another_other_condition
) As A
ORDER BY CASE field_1
    WHEN 'A' THEN 1
    WHEN 'B' THEN 2
    WHEN 'C' THEN 3
    ELSE 4
END

of, beter nog, gebruik de alias in ORDER BY, zoals deze wordt doorgegeven aan het einde van de UNION:

  SELECT "Field1" AS field_1, "Field2" AS field_2,
  "Field3" AS field_3, "Field4" AS field_4
  FROM "TableName" 
  WHERE condition
  AND other_condition
  UNION ALL
  SELECT "Field1" AS field_1, "Field2" AS field_2,
  "Field3" AS field_3, "Field4" AS field_4
  FROM "TableName" 
  WHERE yet_another_condition
  AND yet_another_other_condition
  ORDER BY CASE field_1
    WHEN 'A' THEN 1
    WHEN 'B' THEN 2
    WHEN 'C' THEN 3
    ELSE 4
  END


  1. MySQL-opgeslagen procedure die problemen veroorzaakt?

  2. Evaluatie van veelvouden 'IN' Expressies in 'WHERE'-clausules in mysql

  3. Rekenkundige overloopfout bij het converteren van varchar naar gegevenstype numeriek. '10' <=9.00

  4. C# DateTime verandert naar een ander formaat