• oracle树形sql查询


    select typecode,lpad(' ',4*level-1)||typename
     from ajtype
      start with p_code is null  connect by prior typecode=p_code;

    结果:

    1   +市容环卫
    15       +灯光管理
    151           +拒不安装
    15101               +拒不安装夜景灯光设施
    152           +违规安装
    15201               +不按规定位置安装夜景灯光设施
    15202               +不按规定形式安装夜景灯光设施
    15203               +不按规定期限安装夜景灯光设施
    15204               +不按规定光源色彩安装夜景灯光设施
    153           +不按时亮灯

    select sys_connect_by_path(typename,'>') typename
     from ajtype
      start with p_code is null  connect by prior typecode=p_code;

    1 >市容环卫
    15 >市容环卫>灯光管理
    151 >市容环卫>灯光管理>拒不安装
    15101 >市容环卫>灯光管理>拒不安装>拒不安装夜景灯光设施
    152 >市容环卫>灯光管理>违规安装
    15201 >市容环卫>灯光管理>违规安装>不按规定位置安装夜景灯光设施
    15202 >市容环卫>灯光管理>违规安装>不按规定形式安装夜景灯光设施

  • 相关阅读:
    第三周学习进度
    四则运算之结对开发
    第二周学习进度
    单元测试
    构建之法阅读笔记03
    本周学习进度
    四则运算三
    构建之法阅读笔记02
    本周学习进度
    按照Right-BICEP要求设计的测试用例
  • 原文地址:https://www.cnblogs.com/tongzhenhua/p/1297253.html
Copyright © 2020-2023  润新知