zoukankan      html  css  js  c++  java
  • oracle查询父节点及其下所有子节点

    1.我们的组织机构就是这种树形菜单的格式。

    .

    2.执行sql:

    select
    ( select organization_name from SYS_ORGANIZATION where organization_id =x.organization_id) organization_name,
    c.organization_id
    from SYS_ORGANIZATION c, (select organization_id from SYS_ORGANIZATION where parent_id = '1') x where x.organization_id = c.organization_id or x.organization_id = c.parent_id start with c.organization_id =x.organization_id
    connect by prior c.organization_id = c.parent_id

    效果:

    3.执行sql:

    select organization_name,wmsys.wm_concat(organization_id ) organization_ids from
    (select
    ( select organization_name from SYS_ORGANIZATION where organization_id =x.organization_id) organization_name,
    c.organization_id
    from SYS_ORGANIZATION c, (select organization_id from SYS_ORGANIZATION where parent_id = '1') x where x.organization_id = c.organization_id or x.organization_id = c.parent_id start with c.organization_id =x.organization_id
    connect by prior c.organization_id = c.parent_id ) a group by organization_name

    效果:

     4.执行sql:

    select a.organization_name,count(c.organization_id) sum from
    (select organization_name,wmsys.wm_concat(organization_id ) organization_ids from
    (select
    ( select organization_name from SYS_ORGANIZATION where organization_id =x.organization_id) organization_name,
    c.organization_id
    from SYS_ORGANIZATION c, (select organization_id from SYS_ORGANIZATION where parent_id = '1') x where x.organization_id = c.organization_id or x.organization_id = c.parent_id start with c.organization_id =x.organization_id
    connect by prior c.organization_id = c.parent_id ) a group by organization_name ) a left join
    (select c.clxxbh,c.organization_id from v_wfxx c left join BIZ_IMPORTANT_PLACES z on c.kkmc = z.place_name left join SYS_ORGANIZATION c on z.place_unit = c.organization_id) c
    on instr(a.organization_ids,c.organization_id) > 0 group by a.organization_name

    效果:

  • 相关阅读:
    2017年第一篇博客--关于集成友盟和微信支付等遇到的坑
    【转】ArcGIS Server10.1安装常见问题及解决方案
    【转】C# GDAL 配置
    【转】Silverlight无法添加服务引用
    arcgis for js/flex/sl 该选哪一个?
    webgis开发-开始向JS转向
    形象解释C#、Net、Asp.net
    怎么区分odd和even
    Linux入门
    html网页访问WebAPI中的方法遇到的问题
  • 原文地址:https://www.cnblogs.com/liyang19910805/p/5711954.html
Copyright © 2011-2022 走看看