所以我有一張5列的表格:id, user_id, news_id, comment and date
。每當用戶在新聞評論區發佈內容時,數據就會插入到此表中。SQL - 按行數排序?
現在我正在嘗試製作一個頂級海報功能,它將顯示發佈最多評論的人員。
我想知道如何根據該表中存在user_id的次數來從該表中排序結果。
例如:
1 - 134(user_id) -> 20 posts(that's how many times this user_id was found in the table.)
2 - 123 -> 19
3 - 168 -> 15
等。
在此先感謝。