首頁 >資料庫 >mysql教程 >mysql如何实现递归等级查询

mysql如何实现递归等级查询

WBOY
WBOY原創
2016-06-06 09:34:321871瀏覽

mysql递归oracle

在oracle中
select max(level) into max_level
from zj_template_option t
where t.enable = '1'
and t.template_id = '5'
--and level >='3'
and t.ispfx = '1'
start with t.pid = '0'
connect by prior t.id = t.pid
order by template_id;
把它改成mysql 如何实现,及查询的结果为
id pid level
1 0 1
2 1 2
......

<code>大神能给个这样的函数吗</code>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn