Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Common Table Expressions valid for more than one command
Message
De
30/06/2015 09:29:10
 
 
À
30/06/2015 07:19:27
John Baird
Coatesville, Pennsylvanie, États-Unis
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Versions des environnements
SQL Server:
SQL Server 2012
Application:
Web
Divers
Thread ID:
01621564
Message ID:
01621588
Vues:
63
>>>Is there a way to have a Common Table Expression valid for more than one command in the script? Presently, I have to repeat the same command again, later down the script, so it would be available for other commands.
>>
>>
>>As Naomi and Borislav said, you can't. The options are to redirect to a temp table, table variable, etc. if you need to use it multiple times. In that instance, it's questionable if a CTE is really necessary - you might not be gaining anything (unless you were using the CTE for recursion).
>>
>>In case you're curious, the reason you can't is this....a CTE is really just syntax sugar - it allows you to take the syntax for a derived table subquery and place it "above" the outer query that uses it. If you actually try to run the CTE code itself without executing the subsequent line that uses it, you'll get an error.
>>
>>So the database engine is really just substituting the reference to the CTE in the main query with the SELECT statement in the CTE. Sort of like expanding a macro. So it's all gone after the line of code that uses the CTE.
>
>If its a matter of code duplication, can you use them inside a function to return the data. That way he could just call the function instead of duplication sql code.

He could, depending on how long the query takes. If it's a big one, he might be better off just dumping the results into a table variable or temp table.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform