CTE केवल एक क्वेरी के लिए अच्छा है, लेकिन ऐसा लगता है कि आप प्रत्येक क्वेरी में CTE का उपयोग कर सकते हैं:
WITH ds AS
(
Select a, b, c from test1
)
Select * from ds (the result set of ds, am exporting this to csv)
WITH xy AS
(
select d,e,f from test2 where (uses conditions from test1)
)
Insert into AuditTest
(
Select * from xy
)