注意对时间进行排序时,需要取最大值MAX(createTime) DESC

SELECT TOP 10 orgName FROM Test_Report_log WHERE renCode = '0000' GROUP BY orgName ORDER BY MAX(createTime) DESC;

这样写,在执行group by的时候,数据库就知道要保留Test_Report_log 中createTime最大的那一行了