获取针对特定id的所有数据以及join

时间:2016-09-22 08:59:56

标签: php mysql join

我有两张表postcommenttable 1发布了以下列

id  title  description

table 2评论有以下列

id comment_id 

id每个帖子都可以有多条评论。 我想获取单个帖子及其所有内容 每个$id的相关评论。

我试过这个

$sql = "select * from post join comment on post.id= comment.id where post.id=$id";

因此$ id =参数 结果帖子1有评论1,帖子1有评论2所以我希望帖子1不应该重复。

1 个答案:

答案 0 :(得分:0)

如果您需要posts表和comments表中的数据,则必须执行两个查询,或者在循环结果时忽略重复的帖子。没有办法保持帖子数据不会因每条评论而重复。