0

t_message
msg_id
消息
用户名
date_post
url

t_comment
com_id
评论
msg_id
用户名
date_comment
url

如何根据 msg_id 显示评论?例子 :

约翰发布消息:欢迎来到我的世界。然后简评论了他的信息:也欢迎。
格雷格也评论说:欢迎老板......

其他简发布消息:我今天很高兴。
然后格雷格评论了她的信息:哇......

应该是每次都会有不同的表现吧?

有什么建议么 ?

4

2 回答 2

1

根据 msg_id 检索评论

SELECT c.comment,c.username from t_comment c 
left join t_message m on c.msg_id=m.msg_id 
where c.msg_id={your msg id} 
order by c.date_comment

根据 msg_id 检索评论和消息

select * from
(select m.message,m.username,m.date_post as date_p,m.msg_id from t_message m
union
SELECT c.comment,c.username,c.date_comment as date_p,c.msg_id from t_comment c 
left join t_message m on c.msg_id=m.msg_id )t
where t.msg_id={your msg id} 
order by t.date_p
于 2012-08-14T06:34:27.333 回答
0

你可以用这样的方式,

//Do your connect operations here

$sql_message = "SELECT * FROM t_message;

$result = mysql_query($sql_message);

while ($row = mysql_fetch_assoc($result)) {
    echo "\nMessage : " . $row["message"] . "\n";
    echo "-----Comments : \n"; 

    $sql_comment = "SELECT * FROM t_comments where msg_id = " . $row["msg_id"];
    $result_comments = mysql_query($sql_comment);
    while ($row_comments = mysql_fetch_assoc($result_comments)) {
        echo $row_comments["comment"] . "\n";

    }       
}
于 2012-08-14T06:42:53.803 回答