我想數我的意見,並在那裏答覆,但我似乎無法得到它的權利。MySQL查詢計數問題
這是我的查詢到目前爲止。
SELECT posts_comments.*, users.*
(SELECT COUNT(*)
FROM posts_comments
WHERE parent_comment_id >= 1)
FROM posts_comments
LEFT JOIN users
ON posts_comments.user_id = users.user_id
WHERE post_id = '" . $post_id . "'
AND parent_comment_id = 0
LIMIT $start, $display
這裏是我的MySQL表。
CREATE TABLE posts_comments (
comment_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
parent_comment_id INT UNSIGNED NOT NULL,
user_id INT UNSIGNED NOT NULL,
post_id INT UNSIGNED NOT NULL,
comment TEXT NOT NULL,
PRIMARY KEY (id),
);
顯示輸出。
COMMENT 1
comment 2
comment 3
COMMENT 4
COMMENT 5
你能告訴我們一些樣本期望的輸出嗎? – 2010-09-17 04:08:06
不是它是一回事嗎? – FOXvsNBC 2010-09-17 04:16:45