Tagged Questions
The case-statement tag has no wiki summary.
13
votes
5answers
3k 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 ...
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:
...
7
votes
5answers
2k views
Java: case-statment or if-statement efficiency perspective [closed]
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 ...
7
votes
8answers
370 views
What is the Fastest Way to Check for a Keyword in a List of Keywords in Delphi?
I have a small list of keywords. What I'd really like to do is akin to:
case MyKeyword of
'CHIL': (code for CHIL);
'HUSB': (code for HUSB);
'WIFE': (code for WIFE);
'SEX': (code for SEX);
...
6
votes
2answers
390 views
Why am I getting this warning from GHCi?
I'm getting a curious warning when pattern matching, but only when OverloadedStrings is enabled...
$ ghci -Wall
GHCi, version 6.12.1: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ...
5
votes
2answers
110 views
VB.Net Identical Case Condition
I am converting some vb.net code to c# - as I am more comfortable with it and it helps me in resolving issues faster. However, I came across this code which is NOT an error in vb.net - but converting ...
4
votes
1answer
109 views
How to reference a val in a case statement?
I'm having a slow morning. I thought referencing an existing val in a case statement would be OK. But it seems it is interpreted as a local variable definition. A rudimentary googling didn't help and ...
4
votes
3answers
553 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 ...
4
votes
1answer
153 views
Ruby - Implicit object of a case statement
In Ruby, is there a way to get the implicit object of a case statement?
case 2+2
when '2'
puts '2'
else
puts "#{some_object}"
end
Where 'some_object' would be the return value of whatever ...
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:
...
3
votes
2answers
173 views
How can I test that a value is within a range with a “case” statement instead of an “if” statement?
Can the following if statement be converted to a case statement?
if (Number >= 5) and (Number <= 10) then
lblAnswer.Caption := 'in range'
else
lblAnswer.Caption := 'out of range';
My ...
3
votes
1answer
425 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 ...
3
votes
5answers
227 views
Simple Lisp Case statement question - problem comparing to nil
I'm trying to use a case statement to make some code more readable. It seems to work as a series of if statements, but for some reason the case statement always accepts a comparison to nil even if it ...
3
votes
3answers
501 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 ...
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
37 views
Left joining a table on two properties combined with a case statement
I'm trying to write a query for a database that will left join a table to a look up table and the results will be returned based on a case statement.
In normal SQL the query would look like this:
...
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
1answer
90 views
In Haskell, how to do a case statement on Dynamic TypeRef
I tried the following:
intType = typeOf (5::Int)
stringType = typeOf "s"
dynFunc :: Dynamic -> IO ()
dynFunc d =
case dynTypeRep d of
stringType -> polyFunc ((fromDyn d "") :: String)
...
2
votes
1answer
498 views
Is it possible to perform a “LIKE” statement in a SSIS Expression?
I'm using a Derived Column Task to change column data using a CASE WHEN statement. However, I need to be able to say..
SQL CODE WOULD BE:
CASE WHEN Column01 LIKE '%i%' THEN '0' ELSE '1' END
In ...
2
votes
3answers
325 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
...
2
votes
4answers
435 views
Case Statements versus coded if statements
What is more efficient - handling with case statements in sql or handling the same data using if statements in code. I'm asking because my colleague has a huge query that has many case statements. I ...
1
vote
4answers
51 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 ...
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
1answer
26 views
pseudo IF/Case help
Running PostgreSQL 7.x (Yeah I'm upgrading)
The problem:
I have three to four fields that need to be set if no data is returned.
Was thinking of something like this
SELECT CASE
WHEN ...
1
vote
1answer
108 views
CASE statement results for multiple fields
Running PostgreSQL 7.x (Yeah I'm upgrading)
Example:
SELECT
CASE
WHEN "substring"(t."Field"::text, 0, 3) = '01'::text THEN 'group one'::text
WHEN "substring"(t."Field"::text, 0, ...
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
1answer
48 views
SQL VIEW WITH JOINS
I have 3 tables
Node table - Nodeid, Node relationship id(NodeRelID)
Node relationship table - id, Nodeid, Node Link id
Eventstatus Tabel - id, Nodeid, Node Status.
I want to create a view where ...
1
vote
1answer
115 views
MySQL if then/ case statement
there!
I'm writing mysql script in mySQl Front 4.1.
I have problem with if then, case statements.
I have next code:
set @prodID = -1;
select @prodID = productID
from partid_to_productid
where ...
1
vote
8answers
122 views
Ways to speed up a huge case statement? C++
I am running through a file and dealing with 30 or so different fragment types. So every time, I read in a fragment and compare it's type (in hex) with those of the fragments I know. Is this fast or ...
1
vote
2answers
143 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
995 views
mysql switch case
I have a query structure like below, Im wondering if there is a way to the write the select queries as one using CASE statements or by some other means so that the values get inserted into the ...
1
vote
1answer
96 views
Compiler optimizations on case statement
I would like to broaden my knowledge and skills in compiler writing, especially optimizations. I would like to know what optimizations are available for case-statements with case expression of string ...
1
vote
0answers
158 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
4answers
295 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 ...
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 ...
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
3answers
514 views
SQL Server - How to switch between 2 possible SELECT statements
I would like to use a parameter in my mssql stored procedures to switch between a small and a detailed result (for maintainability, performance and network load reasons).
If parameter is set to 1 i ...
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 ...
1
vote
5answers
2k 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 Price MarkedUpTotal
1 ...
1
vote
3answers
192 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
2answers
62 views
Why does this Ruby case statement return “can't convert nil into String (TypeError)” when used with ||?
I originally had this code written as a series of if statements, but after learning more about Ruby decided a case statement might be more appropriate. However, now it seems to be broken and I'm not ...
0
votes
0answers
23 views
Getting total sum of columns using user-defined variables
I am trying to build a query which, unfortunately, seems to have to be severely complicated for what I'm trying to do. I have 4 tables; fees_amazon_media,fees_amazon_nonmedia,amazon_orders and ...
0
votes
1answer
64 views
Mysql CASE NOT FOUND for CASE STATEMENT on a Stored Procedure
im trying to create a stored procedure that have multiples CASE STATEMENTS
I have the following stored procedure:
BEGIN
CASE @olds
WHEN 'emp' THEN
CASE @news
WHEN 'loc' THEN
UPDATE ...
0
votes
4answers
67 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) = ...
0
votes
4answers
313 views
C - Tricky Switch Case working .. !
Folks,
Recently started learning C.
Stuck at a point. Its about working of switch-case statement.
Here's the code :
#include<stdio.h>
int main() {
int i=4;
switch(i) {
...
0
votes
1answer
91 views
Referencing file contents in a switch case statement in C#/Mono?
I'm setting up a menu system whereby a user is asked to pick a radio station from a list, and for ease of use down the road, I want that list to be in a file called StationList. That bit's all sorted, ...
0
votes
2answers
524 views
SQL: Using a CASE Statement to update 1000 rows at once
Ok, I would like to use a CASE STATEMENT for this, but I am lost with this. Basically, I need to update a ton of rows, but just on the "position" column. I need to UPDATE all position values that ...
0
votes
2answers
740 views
Dropdown list with a “Select All” option
I have three dropdown boxes, Region, District, and City. I want my District dropdown to have a "Select All" option so the user can get all Cities in the Region, else just display the City based on ...
0
votes
1answer
58 views
syntax case statement with calculated column
What is the right syntax for this query in MS-SQL 2005?
select case app.NAMED_USER
WHEN app.NAMED_USER > 50 AND app.NAMED_USER <=0 THEN 4
WHEN app.NAMED_USER > 500 THEN 9
WHEN ...
0
votes
2answers
920 views
Using a Case statement within the values section of an Insert statement
Please forgive my ignorance and poor SQL programming skills but I am normally a basic SQL developer.
I need to create a trigger off the insertion of data in one table to insert different data into ...