为了账号安全,请及时绑定邮箱和手机立即绑定

mysql函数实现递归查询,函数参数能不能当表名?

mysql函数实现递归查询,函数参数能不能当表名?

芜湖不芜 2018-11-14 19:15:06
mysql函数实现递归查询,函数参数能不能当表名
查看完整描述

1 回答

?
喵喔喔

TA贡献1735条经验 获得超5个赞

with a as
(select * from table1 where parentid=0
union all
select b.* from a,table1 b where a.id=b.parentid)
select * from a
用with as 来实现递归

查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 680 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信