Mysql:获取表中的所有链接行

我有一个表结构

有点像这样

id  |   title | next 
1   |  test   | 5
2   |  test   | 0
3   |  test   | 0
4   |  test   | 0
5   |  test   | 3

现在,正如你看到1点到下一个项目5和5点到下一个项目3和3表示结束

我需要一个查询,从中我可以在一列中连续获得1,5,3,它们的标题也是如此

喜欢

result | title
--------------
1      |  test
5      |  test
3      |  test
--------

请帮忙.我甚至不知道如何开始这样的查询.

最佳答案 你需要的是一个树查询 – 检查

Is it possible to query a tree structure table in MySQL in a single query, to any depth?

点赞