Nested/threaded comments with only 1-2 MySQL queries?

时间:2018-08-06 17:58:09

标签: php mysql database-design nested recursive-query

I'm trying to make hierarchical/nested/threaded comments with no limit to replies (like Reddit) and do so in only one or two MySQL queries.

I've followed this tutorial https://www.webslesson.info/2017/12/comments-system-using-php-and-ajax.html的值,但是它具有php函数中的查询并且具有针对每个注释的查询。因此,如果一个页面有30条评论,那么将有30条查询,这是太多的负担。

在mysql中,是否有一种方法可以通过联接,分组依据等方式将所有注释按适当的顺序放置,因此您要做的就是回显文本?

也许一个查询获取了整个线程的ID的正确顺序,然后第二个查询获取了这些ID的数据?

关于如何对MySQL 5.6.17进行这种查询的任何想法吗?

0 个答案:

没有答案