如何使用嵌套结构进行查询?

时间:2013-08-13 08:37:33

标签: mysql nested

我有以下表格结构: 表论坛

forum_id | parent_id

其中parent_id - 任何嵌套深度 表线程

thread_id | forum_id

where forum_id -foreign key table forum 表格消息

message_id | thread_id

其中thread_id-外键表线程 如何计算到特定论坛的消息数量? (可能有嵌套论坛)对不起我的英语,谢谢。

1 个答案:

答案 0 :(得分:0)

目前MySQL似乎不支持递归SQL查询。虽然,您可以考虑更改数据结构以更轻松地实现目标。

例如,看看这个问题:What is the most efficient/elegant way to parse a flat table into a tree?