Bir sonrakiNumara sütuna göre MySQL siparişi

0 Cevap php

I'm trying to pull some info out of a Moodle database.
There is one part that has a list of questions that you can order in whatever way you want through the Moodle interface.
However, the way it stores this in the database is making it hard for me to make a custom query that orders these items in the same manner outside of the moodle interface.

Yani bir sütun kimliği sütun NEXTPAGEID sonra, var.

İşte size ne gerek bir örnek vermek SQL ilk 5 satırlar:

ID: 1; NEXTPAGEID: 3
ID: 3; NEXTPAGEID: 118
ID: 9; NEXTPAGEID: 10
ID: 10; NEXTPAGEID: 515
ID: 11; NEXTPAGEID: 12

Yani ben gerçekten ihtiyacım sipariş kimliği: 1, 3, 118, (118 NEXTPAGEID ne olursa olsun), vb

Yani bu SQL mümkündür ya da PHP I çıkışı bu sorgu onunla uğraşmak zorunda mı?

0 Cevap