91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SQL Server 通過with as方法查詢樹型結構

發布時間:2020-09-18 18:02:35 來源:腳本之家 閱讀:179 作者:浩叔 欄目:數據庫

一、with as 公用表表達式

  類似VIEW,但是不并沒有創建對象,WITH AS 公用表表達式不創建對象,只能被后隨的SELECT語句,其作用:

  1. 實現遞歸查詢(樹形結構)

  2. 可以在一個語句中多次引用公用表表達式,使其更加簡潔

二、非遞歸的公共表達式

  可以是定義列或自動列和select into 效果差不多

--指定列
with withTmp1 (code,cName)
as
(
 select id,Name from ClassUnis
)
select * from withTmp1
--自動列
with withTmp2 
as
(
 select * from ClassUnis
 where Author = 'system'
)
select * from withTmp2

三、遞歸的方式

  通過UNION ALL 連接部分。通過連接自身whit as 創建的表達式,它的連接條件就是遞歸的條件。可以從根節點往下查找,從子節點往父節點查找。只需要顛倒一下連接條件。例如代碼中條件改為t.ID = c.ParentId即可

with tree as(
 --0 as Level 定義樹的層級,從0開始
 select *,0 as Level 
 from ClassUnis
 where ParentId is null
 union all
 --t.Level + 1每遞歸一次層級遞增
 select c.*,t.Level + 1 
 from ClassUnis c,tree t
 where c.ParentId = t.ID
 --from ClassUnis c inner join tree t on c.ParentId = t.ID
)
select * from tree where Author not like'%/%'

SQL Server 通過with as方法查詢樹型結構

還能通過option(maxrecursion Number) 設置最大遞歸次數。例如上訴結果Level 最大值為2表示遞歸兩次。我們設置其值為1

with tree as(
 select *,0 as Level from ClassUnis where ParentId is null
 union all
 select c.*,t.Level + 1 from ClassUnis c,tree t where c.ParentId = t.ID
)
select * from tree where Author not like'%/%' 
option(maxrecursion 1)

SQL Server 通過with as方法查詢樹型結構

好了這篇文章就介紹到這了,希望能幫助到你。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

姚安县| 尤溪县| 长丰县| 尚义县| 库伦旗| 买车| 汶川县| 宜城市| 麻城市| 连城县| 哈密市| 东方市| 荆州市| 桓仁| 马鞍山市| 涞源县| 宁乡县| 石阡县| 中宁县| 普兰店市| 扶沟县| 民县| 诏安县| 正阳县| 舞钢市| 横峰县| 青浦区| 永吉县| 阿合奇县| 北川| 天祝| 铁力市| 高密市| 沭阳县| 清原| 隆回县| 闸北区| 怀柔区| 陆川县| 泗阳县| 贺州市|