How can we use Multiple Queries using 'WITH' Clause

2.1k Views Asked by At

as sample code below....

 WITH sampleA as (SELECT * FROM emp)

 SELECT * FROM sampleA

 SELECT * FROM sampleA

this alias 'sampleA' will work for only first query not for second or later..

But I want to query more with this alias only.

Can you please help me, how can I do that?

1

There are 1 best solutions below

0
On

Common table Expression scope is limited to first SELECT statement. For multiple usage , use instead temporay table or table variable.