Skip to content
Advertisement

SQL Server CASE Statement Evaluate Expression Once

I may be missing something obvious! Thanks in advance for any help.

I am trying to use a CASE statement in an inline SQL Statement. I only want to evaluate the expression once, so I am looking to put the expression in the CASE section, and then evaluate the result in each WHEN. Here is the example:

I know I can do this:

But in my first example, SQL does not seem to like this statement:

Note that the statement is inline with other SQL, so I can’t do something like:

My actual DateDiff expression is much more complex and I only want to maintain its logic, and have it evaluated, only once.

Thanks again…

Advertisement

Answer

You can use apply for this purpose:

APPLY is a very handy way to add calculated values into a statement. Because they are defined in the FROM clause, they can be used in SELECT, WHERE, and GROUP BY clauses where column aliases would not be recognized.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement