Estou escrevendo uma Consulta SQL, onde algumas das colunas retornadas precisam ser calculadas dependendo de várias condições.
Atualmente, estou usando instruções de caso aninhadas, mas está ficando confuso. Existe uma maneira melhor (mais organizada e / ou legível)?
(Estou usando o Microsoft SQL Server, 2005)
Um exemplo simplificado:
SELECT
col1,
col2,
col3,
CASE
WHEN condition
THEN
CASE
WHEN condition1
THEN
CASE
WHEN condition2
THEN calculation1
ELSE calculation2
END
ELSE
CASE
WHEN condition2
THEN calculation3
ELSE calculation4
END
END
ELSE
CASE
WHEN condition1
THEN
CASE
WHEN condition2
THEN calculation5
ELSE calculation6
END
ELSE
CASE
WHEN condition2
THEN calculation7
ELSE calculation8
END
END
END AS 'calculatedcol1',
col4,
col5 -- etc
FROM table
CASE WHEN