Wie kann ich das resultat nach „name“ oder „strasse“ sortieren? Geht das überhaupt?
Fordere alle Daten gleichzeitig ab und dann ganz normal mit ORDER BY
.
Das Stichwort ist hierbei IN bzw. = ANY.
Man beachte dabei, dass man nicht zwingend Subqueries benutzen muss, sondern auch Werte auflisten kann:
SELECT
*
FROM
`table`
WHERE
`table`.`id` IN (234, 6, 3, 678, 1)
ORDER BY
`table`.`potato` ASC;
(Ich finde IN
besser lesbar als = ANY
, was du in dem Fall verwendest ist Wurst)
MfG
bubble
--
If "god" had intended us to drink beer, he would have given us stomachs. - David Daye
If "god" had intended us to drink beer, he would have given us stomachs. - David Daye