Tagged Questions

11
votes
5answers
1k views

Why is CharInSet faster than Case statement?

I'm perplexed. At CodeRage today, Marco Cantu said that CharInSet was slow and I should try a Case statement instead. I did so in my parser and then checked with AQTime what the sp …
1
vote
1answer
115 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 …
1
vote
3answers
119 views

Switch Over Value Determined at Runtime in c#

I've got a case statement in c#. I would like to chose the values for the cases from a configuration file at run time. Is this possible?
0
votes
3answers
70 views

LIKE operator for Progress DB SQL

I'm trying to do something like this in Progress SQL (THIS IS NOT POSTGRES!) SELECT CASE WHEN code LIKE '%foo%' THEN 'Y' ELSE 'N' END as foo FROM bar However Progress do …
0
votes
3answers
64 views

Multiple Select Statements within IF

I could use some help to write a prog./sql construct for a report.. The Sql should first check for the prompt & then decide which "select" statements should run something lik …
0
votes
2answers
56 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 …
0
votes
3answers
132 views

If else or case statement help!

Hi I could really use some help with the best way to accomplish the following: I have the below in my controller (and I know this should not be here and needs to move to the model) …
0
votes
5answers
354 views

Why must you GROUP BY the columns in a CASE statement?

I'm trying to run a query in SQL Server 2008 against a table where some of the data was entered inconsistently and I have to handle this. Table data example: OrderID Qty Pric …
0
votes
3answers
385 views

SQL CASE Statement

Hi, Is the following possible in SQL Server 2000? CREATE FUNCTION getItemType (@code varchar(18)) RETURNS int AS BEGIN Declare @Type tinyint Select @Type = case len(@code) WHEN …