The case-statement tag has no wiki summary.
15
votes
5answers
5k 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 speedup was. I found ...
9
votes
5answers
6k views
Java: case-statment or if-statement efficiency perspective [duplicate]
Possible Duplicates:
is “else if” faster than “switch() case” ?
What is the relative performance difference of if/else versus switch statement in Java?
I know that ...
5
votes
3answers
1k views
Pattern matching variables in a case statement in Haskell
If I compare a string literal to a string literal using the case statement, I get the expected behavior: if they are the same - it matches, if they are not - it does not.
However, if I compare a ...
10
votes
2answers
7k 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:
...
3
votes
1answer
3k views
Verilog Barrel Shifter
I want to create a 64-bit barrel shifter in verilog (rotate right for now). I want to know if there is a way to do it without writing a 65 part case statement? Is there a way to write some simple code ...
2
votes
3answers
1k 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
...
12
votes
4answers
3k views
Ruby class types and case statements
What is the difference between
case item.class
when MyClass
# do something here
when Array
# do something different here
when String
# do a third thing
end
and
case item.class
when ...
4
votes
3answers
2k 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:
...
3
votes
3answers
2k views
Haskell: Multiple Case Statements in Single Function
I want to include more than 1 case statement in a haskell function (see below for example of hypothetical function). However, it is not legal haskell. What is a better way of accomplishing the same ...
1
vote
2answers
502 views
Case Statement Not Assigning Value
I'm having some trouble debugging a case statement. I was hoping that the statement would assign numeric values to note-val, but so far it is assigning #<void>. I know it's something wrong with ...
1
vote
1answer
684 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 ...
0
votes
4answers
208 views
Cost of SORT is slowing down my query
PostgreSQL 7.4 (Yep upgrading)
So in my WHERE condition I have this
AND CASE
WHEN "substring"(t."FieldID"::text, 0, 3) = '01'::text
OR "substring"(t."FieldID"::text, 0, 4) = ...