码迷,mamicode.com
首页 > 数据库 > 详细

SQL在一张表中根据父ID获取所有的子ID

时间:2018-07-06 16:00:56      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:where   HERE   sele   rom   根据   parentId   union   sel   sql   

with a as (
select id,name,parentid from categories where id=53
union all
select x.id,x.name,x.parentid from categories x,a where x.parentid=a.id
)
select * from a

 

SQL在一张表中根据父ID获取所有的子ID

标签:where   HERE   sele   rom   根据   parentId   union   sel   sql   

原文地址:https://www.cnblogs.com/chenxizhaolu/p/9273648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!