我已經得到了與這樣的列的MySQL表:comment_id,comment_content,comment_date,comment_author。 我需要得到10個具有獨特comment_author的最新評論。 這個查詢:從MySQL表選擇10個最新評論與獨特作者
SELECT comment_content, comment_date, comment_author
FROM comments
GROUP BY comment_author
ORDER BY comment_date DESC
LIMIT 10
幾乎做什麼,我需要,但它需要從每一個獨特的作家1個最古老的評論,但我需要最新的一個。嘗試使用GROUP BY comments_author HAVING MAX(comment_date),但沒有任何更改。 謝謝。
也許這可能對您有幫助嗎? :http://stackoverflow.com/questions/14770671/mysql-order-by-before-group-by – 2014-12-19 11:01:10
您的查詢似乎是完美的。 – 2014-12-19 11:01:18
@ jQuery.PHP.JAVA.net我們對完美有很不同的定義 – Strawberry 2014-12-19 11:04:08