Das Ergebnis der MySQL-Reihenfolge nach Unterabfrage wird auch im Ergebnissatz angezeigt
Mein MySQL-Statement:
SELECT * FROM wht_user AS t1 WHERE pid =79 ORDER BY (
SELECT sum( `distribution_money` ) AS
AGGREGATE FROM wht_distribution_detail AS t2
WHERE t1.id = t2.uid
AND `puid` =79
AND `status` =4
GROUP BY `uid`
ORDER BY `updatetime` DESC
) DESC
Wie zeige ich AGGREGATE im Ergebnissatz an? Oder gibt es eine bessere Möglichkeit?
求人不如求己 已解决: