0
這裏有一個概括的數據庫模式:查詢到從另一個表計項目金額
Table: posts
Columns: id, contents
Table: comments
Columns: id, post_id, contents
這裏就是我想要做的:
SELECT *, (select number of comments from comments table
where post_id = id of posts table) AS num_comments
FROM posts
我忘了給帖子添加一些東西。我需要用一個數字來劃分commentScount,比如0.5。我怎麼做? –
根據您的要求更新 – shola
非常感謝:) –