2022-08-23 10:31

mysql8递归查询的简单用法

王姐姐

数据库

(1429)

(0)

收藏

本文使用Mysql8.0的特新实现递归查询,文中给出了详细的实例代码,话不多说,来一起看看详细的介绍吧。

表结构如下:


image.png

递归查找所有上级

with recursive re_temp as (
    select id,title,parent_id  from product_type  where id = 7
    union all
    select t.id,concat(re_temp2.title,'>',t.title),t.parent_id
    from product_type t
             inner join re_temp re_temp2 on t.id = re_temp2.parent_id
)