가능하다면 샘플 좀 올려주세요.
with N(id, pid) as
(select id, pid
from table_name where id = 10
union all
select nplus1.id, nplus1.pid
from table_name nplus1, N
where N.id = nplus1.pid
)
select id, pid
from n
대충 이런 with 로 나온 값을
update table_name set
column = 'N'
where = ....
절에 넣어야 하는데
잘 안되네요.
|