我試圖將Xoops帖子轉換爲Wordpress。作爲其中的一部分,我想獲得一個主題的評論數。帖子和回覆在相同的「topic_id」上。如何計算它們並將其發佈到新列?從Xoops數據庫中計數並插入評論
從這裏DB當前狀態
topic_id | subject |comment_count|
+________+_____________________+_____________+
1 | welcome |
1 | Re: welcome |
2 | hello world |
2 | Re: hello world |
2 | Re: hello world |
3 | hello friends |
我想借此(topic_id計數 - 1)重播的號碼(評論數)。引導我在MYSQL中查詢
我想將輸出放在同一個表中。 (COMMENT_COUNT)
DB預期輸出
| topic_id | subject |comment_count|
+________+_____________________+_____________+
| 1 | welcome | 1
| 1 | Re: welcome | 1
| 2 | hello world | 2
| 2 | Re: hello world | 2
| 2 | Re: hello world | 2
| 3 | hello friends | 0
這會給'comment_count' = 1爲'3 |你好朋友'它應該是0,因爲它沒有評論重播。 –
當有一個時它怎麼會爲零 –
它應該是零,因爲這個評論沒有重播評論。看看OP示例數據。 '1 | welcome'具有'commnet_count' = 1,因爲它有1個重播但是'3 |你好朋友'沒有任何重播。 –