Tagged Questions

8
votes
2answers
1k views

T-SQL Conditional WHERE Clause

Found a couple of similar questions here on this, but couldn't figure out how to apply to my scenario. My function has a parameter called @IncludeBelow. Values are 0 or 1 (BIT). I have this query: ...
2
votes
3answers
326 views

Query with many CASE statements - optimization

I have one very dirty query that per sure can be optimized because there are so many CASE statements in it! SELECT (CASE pa.KplusTable_Id WHEN 1 THEN sp.sp_id WHEN 2 THEN fw.fw_id ...
1
vote
0answers
159 views

Query with many CASE statements - optimization [closed]

Possible Duplicate: Query with many CASE statements - optimization Hi guys, I have one very dirty query that per sure can be optimized because there are so many CASE statements in it! ...
1
vote
1answer
111 views

Matching BIT to DATETIME in CASE statement

I'm attempting to create a T-SQL case statement to filter a query based on whether a field is NULL or if it contains a value. It would be simple if you could assign NULL or NOT NULL as the result of a ...
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 ...