Skip to content
Advertisement

Simplifying CASE Statement with Correlated Subqueries

Can I simplify the below CASE statement, which runs the same correlated subquery twice?

In the above code, out is the table being referenced outside the subquery, and the SELECT statement is guaranteed to always give one value or NULL.

Ideally, I would like to have this subquery run only once.

Advertisement

Answer

Using coalesce() doesn’t actually fix the problem (because SQL Server runs the first argument twice when the value is null). . . the correlated query is still run twice. isnull() does fix that problem:

Or, you can use an aggregation query:

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