您的位置:首页 > 房产 > 建筑 > 成都有哪些设计公司_阿里企业邮箱个人版_seo关键词优化费用_黄页推广引流

成都有哪些设计公司_阿里企业邮箱个人版_seo关键词优化费用_黄页推广引流

2025/7/30 18:29:43 来源:https://blog.csdn.net/qq_45443475/article/details/144312765  浏览:    关键词:成都有哪些设计公司_阿里企业邮箱个人版_seo关键词优化费用_黄页推广引流
成都有哪些设计公司_阿里企业邮箱个人版_seo关键词优化费用_黄页推广引流

Mysql 使用WITH查询每个类别对应的父类、类别层级深度(总共有几层)、类别层级路径。


with recursive cte as (select category_id, category_name, parent, category_name                  as parent_name     -- 查询每个类别的父类, 0                              as depth           -- 查询类别层级深度, cast(category_id as char(200)) as path            -- 查询类别层级路径from categorywhere parent is nullunion allselect c.category_id, c.category_name, c.parent, cte.category_name                     as parent_name -- 查询每个类别的父类, cte.depth + 1                         as depth   -- 查询类别层级深度, concat(cte.path, '->', c.category_id) as path    -- 查询类别层级路径from category as cinner join cteon c.parent = cte.category_id)
select * from cte;
+-------------+----------------------+--------+----------------------+-------+------------+
| category_id | category_name        | parent | parent_name          | depth | path       |
+-------------+----------------------+--------+----------------------+-------+------------+
|           1 | ELECTRONICS          | NULL   | ELECTRONICS          |     0 | 1          |
|           2 | TELEVISIONS          | 1      | ELECTRONICS          |     1 | 1->2       |
|           6 | PORTABLE ELECTRONICS | 1      | ELECTRONICS          |     1 | 1->6       |
|           3 | TUBE                 | 2      | TELEVISIONS          |     2 | 1->2->3    |
|           4 | LCD                  | 2      | TELEVISIONS          |     2 | 1->2->4    |
|           5 | PLASMA               | 2      | TELEVISIONS          |     2 | 1->2->5    |
|           7 | MP3 PLAYERS          | 6      | PORTABLE ELECTRONICS |     2 | 1->6->7    |
|           9 | CD PLAYERS           | 6      | PORTABLE ELECTRONICS |     2 | 1->6->9    |
|          10 | 2 WAY RADIOS         | 6      | PORTABLE ELECTRONICS |     2 | 1->6->10   |
|           8 | FLASH                | 7      | MP3 PLAYERS          |     3 | 1->6->7->8 |
+-------------+----------------------+--------+----------------------+-------+------------+

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com