用MySQL和&amp ;;显示线程评论PHP

时间:2009-11-21 15:20:56

标签: php mysql

鉴于下表,如何编写MySQL查询以在单个页面中显示线程注释?

表格结构:

  • comment_id
  • comment_parent
  • COMMENT_CONTENT

谢谢。

3 个答案:

答案 0 :(得分:3)

答案 1 :(得分:0)

Select comment_content from table where comment_parent != 0;

然后使用PHP显示您想要的结果。

答案 2 :(得分:0)

取决于您想要的深度...但这里有一个与1个查询相关的1线程示例

SELECT * FROM `comment` a LEFT JOIN `comment` b ON a.comment_id = b.comment_id WHERE a.comment_parent = 0 

然后使用php选择父评论更改并显示。

但是在多个查询速度上执行此操作可能会更好。你需要做一些基准来确保