Mit ORDER BY kommt eine Fehlermeldung?
Versuch es mal so...
SQL-Code:
SELECT *
FROM (SELECT 1 AS typ, id, picture
FROM pictures
WHERE id = 52
UNION
SELECT 2 AS typ, id, picture
FROM pictures
WHERE id = 18
UNION
SELECT 3 AS typ, id, picture
FROM pictures
WHERE id = 36) x
ORDER BY typ
Es ist sicherer wenn das ORDER BY auch vorhanden ist.
Gruss
Thorsten