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: ...
4
votes
3answers
805 views

Can the SQL Case Statment fall through?

Is there a way to make a CASE statement in SQL fall through like the case statement in C#? What I don't want to do is the example below but if that’s my only option I guess I'll go with it. EXAMPLE: ...
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 ...
2
votes
2answers
44 views

Conditional value replacement in SQL Server

I have a table that has several columns. The value of one column is 0 or 1. I want to write a query that returns "Hello" if the value was 0, or "Bye" if it was 1. What is the appropriate way to write ...
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
3answers
79 views

case statement returns multiple rows

I want to return multiple rows in case statement. is it possible? or is there any alternate way to do it? select case when 3 = 1 then (select orderid from order_master where ...
1
vote
5answers
98 views

Sql Server: CASE Statement does unexpected behavior when comparing to NULL

Given: The following Select statement: select case NULL when NULL then 0 else 1 end Problem: I'm expecting this to return 0 but instead it returns 1. What gives?
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
3answers
99 views

SQL Server Query with “ELSE:”

I have various VB6 projects I'm maintaining with some of the queries being passed to the server having "ELSE:" with the colon used in case statements. I'm wondering can someone tell me what the **ll ...
1
vote
1answer
506 views

Case statement in where clause w/an OR

Hey guys, Apologies in advance since I feel like I'm probably forgetting/missing something obvious on this one. Here goes; I'm using a case statement in my WHERE clause, the below works fine: WHERE ...
-2
votes
4answers
55 views

SQL Case statement query

See image. I have a table full of records relating to specific departments. If the department name is held under the field 'StandardWork' but after the word 'Support -' what is the SQL command to ...