Registriert seit: 18. Mär 2004
Ort: Luxembourg
3.492 Beiträge
Delphi 7 Enterprise
|
Re: UNION ALL -> Problem beim Sortieren
22. Jan 2008, 14:17
In einer Union darf es nur ein ORDER BY statement geben. Das Gewünschte kannst Du so erreichen:
SQL-Code:
SELECT 1 as DescriptionNumber, Description1 as Description
FROM Description
WHERE
...
UNION ALL
SELECT 2 as DescriptionNumber, Description2 as Description
FROM Description
WHERE
...
ORDER BY Description
Ibi fas ubi proxima merces
sudo /Developer/Library/uninstall-devtools --mode=all
|