-1
我有,人們可以發送意見表:評論答案MySQL的
CREATE TABLE IF NOT EXISTS `comments` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`user` int(11) UNSIGNED NOT NULL,
`reference` int(11),
`data` datetime NOT NULL,
`ip` varchar(20),
`answer` int(11)
PRIMARY KEY (`id`)
)
如果這個評論是另一個評論answer
答案都有其ID。 我有這樣的選擇:
select id, user, data, ip, answer from comments where reference = ? and answer = 0
,所以我可以通過參考ID得到所有發表評論,並跳過它,如果它是一個答案。
問題是,如果有一條評論有答案,我該如何在其選擇的評論中選擇這個答案?例如:
comment 1
answer comment 1 (1)
answer comment 1 (2)
comment 2
comment 3
comment 4
answer comment 4 (1)
answer comment 4 (2)
comment 5
...
謝謝你的朋友!我會試試這個! –