SQL中查詢樹結構式結果

2021-04-15 07:07:27 字數 491 閱讀 2832

//sql中查詢樹結構式結果

sql:select   a.id,a.gnwzmc,a.idx,b.idx   as   parentidx,a.級數  

from   (select   rownum   as   idx,level   as   級數,id,fid,gnwzmc

from   gy_sb_wjjg 

start   with   fid='-1'   connect   by   prior   id=fid)   a,  

(select   rownum   as   idx,id    

from   gy_sb_wjjg   

start   with    fid='-1'    connect   by   prior   id=fid)   b  

where   a.fid=b.id  

order   by   a.idx 

//當然可以用start with 

樹結構查詢 乙個SQL解決問題

在公司論壇上看到乙個同事得求助帖,問題如下 有兩個表結構和資料分別如下 org 機構基本資訊表 org id 機構id org name 機構名稱 1 立案處 21科 32科4調查處 53科 61科72科 83科9處理處 101科 112科 113科 rel 機構關係表 org id 機構id pa...

SQL查詢結果匯出到Excel中

執行 object storedprocedure dbo exportfile script date 2016 05 10 23 21 13 set ansi nulls on goset quoted identifier on gosp configure show advanced opt...

SQL 中樹形結構查詢的運用

use tempdb go 建立演示環境 create table dept id int primary key,parent id int,name nvarchar 20 insert dept select 0,0,n 全部 union all select 1,0,n 財務部 union ...