0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

start with  where条件 KSR

Posted at

#ORACLE START WITH と WHERE メモ
##start with 文に where の位置

select  * 
from 
     tableA
where 
     treeID=1
start with 
           parentID = 0
connect by 
           parentID = prior childID 
from 
     (select * from tableA where treeID=1)
start with 
          parentID = 0
connect by  
          parentID = prior childID 

WHERE条件参照:[https://www.cnblogs.com/xcxcxcxc/p/5993835.html]
START WITH参照:[https://blog.csdn.net/weiwenhp/article/details/8218091]
無限ループ参照:[https://codezine.jp/article/detail/2691]
まだ見てない参照:[https://www.cnblogs.com/YuyuanNo1/p/7919332.html]

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?