博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle SQL
阅读量:5129 次
发布时间:2019-06-13

本文共 292 字,大约阅读时间需要 1 分钟。

start with....connect by 递归查询树状SQL

Select * from t_tree

 where UPPER(is_display) = 'ON'
 start with p_node_id =1 --当前节点ID
 connect by prior node_id = p_node_id
 and level <= 1 --(从父往子递归只查询一级子节点)
 order SIBLINGS by display_order

转载于:https://www.cnblogs.com/onlywujun/archive/2013/02/21/2920864.html

你可能感兴趣的文章
一步步学习微软InfoPath2010和SP2010--第九章节--使用SharePoint用户配置文件Web service(2)--在事件注册表单上创建表单加载规则...
查看>>
gulp插件gulp-ruby-sass和livereload插件
查看>>
免费的大数据学习资料,这一份就足够
查看>>
clientWidth、clientHeight、offsetWidth、offsetHeight以及scrollWidth、scrollHeight
查看>>
MySQL(一)
查看>>
企业级应用与互联网应用的区别
查看>>
steelray project viewer
查看>>
itext jsp页面打印
查看>>
HTTP之报文
查看>>
Perl正则表达式匹配
查看>>
Git
查看>>
DB Change
查看>>
nginx --rhel6.5
查看>>
Eclipse Python插件 PyDev
查看>>
selenium+python3模拟键盘实现粘贴、复制
查看>>
第一篇博客
查看>>
typeof与instanceof的区别
查看>>
网站搭建(一)
查看>>
SDWebImage源码解读之SDWebImageDownloaderOperation
查看>>
elastaticsearch
查看>>