Sorry, ich habe ein einfaches Beispiel verwendet, aber meine Tabelle ist komplexer. Der id_alternativo kann rekursiv sein (id 18 könnte eine id_alternativo = 19 haben) und so weiter und id_alternativo könnte nicht die höchste ID auf der Tabelle sein, so dass ORDER BY id_alternativo DESC, id DESC
nicht funktioniert. Hier ist eine Abfrage von meinem Tisch:
SELECT
a.id, a.compatibile, a.id_alternativo
FROM
ordini_righe AS a
WHERE
intestazione IN (398010) AND a.canc = 0
AND a.stato_ordine = 0
Hier ist das Ergebnis
+-------+-------------+----------------+
| id | compatibile | id_alternativo |
+-------+-------------+----------------+
|828924 | 0 | 828931 |
+-------+-------------+----------------+
|828925 | 828932 | 0 |
+-------+-------------+----------------+
|828926 | 0 | 0 |
+-------+-------------+----------------+
|828927 | 0 | 0 |
+-------+-------------+----------------+
|828931 | 0 | 828933 |
+-------+-------------+----------------+
|828932 | 828932 | 0 |
+-------+-------------+----------------+
|828933 | 0 | 0 |
+-------+-------------+----------------+
Ich musste compatibile ab bestellen und dann bestellen Sie die anderen Datensätze durch die Beziehung beetween id_alternativo und id. So löste ich dieses eine neue Spalte wie mit
SELECT
a.id, a.compatibile, a.id_alternativo, IF(id_alternativo = 0, a.id, id_alternativo) ordine
FROM
ordini_righe AS a
JOIN
locazioni AS b ON a.locazione = b.id
JOIN
stati_righe AS c ON a.stato_ordine = c.id
WHERE
intestazione IN (398010) AND a.canc = 0
AND a.stato_ordine = 0
ORDER BY compatibile DESC, ordine, a.id ASC
Und ich habe das gewünschte Ergebnis
+-------+-------------+----------------+--------+
| id | compatibile | id_alternativo | ordine |
+-------+-------------+----------------+--------+
|828925 | 828932 | 828931 | 828925 |
+-------+-------------+----------------+--------+
|828932 | 828932 | 0 | 828932 |
+-------+-------------+----------------+--------+
|828926 | 0 | 0 | 828926 |
+-------+-------------+----------------+--------+
|828927 | 0 | 0 | 828927 |
+-------+-------------+----------------+--------+
|828924 | 0 | 828931 | 828931 |
+-------+-------------+----------------+--------+
|828931 | 0 | 828933 | 828933 |
+-------+-------------+----------------+--------+
|828933 | 0 | 0 | 828933 |
+-------+-------------+----------------+--------+
wollen Sie statische Sortierung? –
was meinst du mit statischer Sortierung? – andyts93
Wie möchten Sie Ihre Datensätze sortieren? – Sadikhasan