with
tempTable1 as (
select '1' col union all
select '2' col union all
select '3' col union all
select '4' col union all
select '5' col ),
tempTable2 as (
select col
from hintTable -- hintTable (컬럼종류는 col, col2... 있다고 가정)
where ...)
select *
from tempTable1 a,
tempTable2 b
where a.col = b.col
-> 이런형식으로 쿼리 작성중인데 mssql2000 에서는 with... as... 구문이 안먹히는것 같습니다...
마땅한 다른 방법이 떠오르지 않아서 부득이하게 질문란에 올리게 되었습니다...
답변 부탁드립니다... -- __ -- 꾸벅~ |