I want to do something like this in TSQL (SQL Server 2005):
IF (Column1 = x)
{
--CTE statement
}
ELSE
{
--SQL statement
}
Any help is appreciated.
|
|
I want to do something like this in TSQL (SQL Server 2005):
Any help is appreciated.
|
|||
|
|
|
|
Is that part of a query? or on its own? Outside of
The branches can do anything, including use CTEs etc. Inside a query, you have
However, you can't do a CTE inside |
||||||
|
|
|
The CTE applies to the whole statement and is not standalone. It's a clause or sub-construct in a larger SQL construct. This works if the output from each statement is different
This works if the output is the same:
Otherwise, I'm unsure what you want to achieve... |
||
|
|