Is there a faster alternative to check if a SELECT statement is null in CASE statements in SQL server?

StackOverflow https://stackoverflow.com/questions/22810320

Domanda

Is there a faster version for this case statement?

CASE
 WHEN (SELECT STATEMENT) IS NOT NULL
 THEN (SELECT STATEMENT)
 ELSE 0
END AS [Variable Name]

Where the SELECT STATEMENTdoesn't change from line 2 to line 3.

Thank you!

È stato utile?

Soluzione

Faster to type...

isnull(statement, 0)

Altri suggerimenti

WITH cte
AS
(
    SELECT co11
    FROM ...
)
SELECT ISNULL(cte.col1, 0) as [Variable Name]
FROM cte
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top