view 를 생성할때
view안에 with 구문을 사용할수 없나요?
ㅠㅠ
있습니다.
create view uvw_test as with tmp as ( select idx =1 union all select idx = idx + 1 from tmp where idx < 10) select * from tmp