sql with clause within a with clause

objectWithoutClass picture objectWithoutClass · Aug 2, 2013 · Viewed 18.9k times · Source

can i do something like this :

with t as 
    (
        with tt as
            ( 
                 select * from table 
            )
        SELECT * FROM tt
    )
select * from t

i willing to perform some logic on output of inner with clause & than again do some operations on output of the outer with clause.

any help will be appreciated ...
Thanks

note :- its just some simplified query that will resolve my problem in my actual query, which have nested with clause

Answer

Giannis Paraskevopoulos picture Giannis Paraskevopoulos · Aug 2, 2013

You can do something like this:

with t as 
(
    select * from table
),
tt as
( 
     select * from t
)
select * from tt