0
我使用此查詢來選擇所有的文章:Mysql的連接問題
SELECT articles.*,categories.category_name,users.username,tags.tag
FROM articles
LEFT JOIN `categories` ON articles.category_id = categories.category_id
LEFT JOIN `users` ON articles.author_id = users.user_id
LEFT JOIN `tags` ON articles.article_id = tags.article_id
ORDER BY articles.date_added DESC
我有一個其他的表comments
,我要計算多少註釋是在那裏,在該表=的article_id中的article_id文章表。我試着用COUNT,但是它只返回一個結果。我怎麼用一個查詢來做到這一點?
它的工作原理。非常感謝。 – Nikolay