0

我试图让这个查询在分组之前按日期排序。我已经尝试了一些在 stackoverflow 上找到的“解决方案”,但没有任何效果。

查询工作得很好,期望按日期排序。

SELECT * 
FROM
    guth_matchtable g 
    JOIN smp_scout_match_application scma 
        ON scma.guthmatchid = g.guthmatchid 
    JOIN smp_scout_match_application_cost smac 
        ON scma.id = smac.applicationid 
WHERE scma.userid = 5997 
    AND g.teamidhome IN (6384) 
GROUP BY g.teamidhome,
    smac.coststype 
ORDER BY g.dateofmatch DESC ;
4

0 回答 0