Tagged Questions

2
votes
2answers
45 views

Case in nested select

I'm having trouble getting a CASE statement to work in a nested select. I think I'm close but I can't quite get the syntax right. So far I've tried: SELECT l.*, Credit = ( CASE WHEN ...
1
vote
4answers
52 views

Sql condition statements

I have an Excel sheet and have this formula below. I would like to calculate the same formula with sql. In excel formula there is a nested if condition. Is it possible with sql ? I have tried with ...
0
votes
2answers
313 views

TSQL - How to return 2 values with one case statement?

Is there a way to use one CASE statement and return 2 different values? Following query has 2 CASE statements with same conditions. select case when DA.value = 1 then da.Good else da.Bad end as ...