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

Oracle 输出树形结构

时间:2017-04-14 16:32:17      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:name   子目录   where   函数   href   url   cat   html   spring   

Oracle 输出树形结构

树形结构,根 select connect_by_root(cat.parentid) root,cat.id,cat.parentid,cat.name,cat.code from V cat start with cat.parentid in (37558) connect by prior cat.id= cat.parentid

树形结构,一级子目录 select connect_by_root(cat.id) root,cat.id,cat.parentid,cat.name,cat.code from A cat start with cat.parentid in (select id from bto_c2.category_new where parentid = 37558) connect by prior cat.id= cat.parentid

 

ORACLE 实用函数使用案列

Oracle 输出树形结构

标签:name   子目录   where   函数   href   url   cat   html   spring   

原文地址:http://www.cnblogs.com/Springmoon-venn/p/6709225.html

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