mysql order by subquery, the subsequent results are also displayed in the result set
My 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
How to display AGGREGATE in the result set? Or is there a better way?
It’s better to ask for others than to ask for yourself. Solved: