The case-statement tag has no wiki summary.
0
votes
1answer
32 views
Mysql logic - how to change the selected value based on the data?
I am trying to populate a table with phone number from a temp table. I have wrote the query with no problem. but my peoblem here is to know if the company already has a primary number or not
so I ...
0
votes
1answer
19 views
MySQL CASE statement error
I'm trying to create a function that returns a decimal value.
I'm new to MySQL. I have experience in MSSQL.
Here's the code.
delimiter $$
CREATE FUNCTION FN_SUELDO_BASICO(pLEGAJO_ID INT)
...
3
votes
4answers
149 views
Haskell - Maybe arithmetic
I have been asked to implement a function which uses the following profile:
maybe_divide :: Maybe Integer -> Maybe Integer -> Maybe Integer
and responds in the following manner:
> ...
0
votes
1answer
39 views
CASE WHEN THEN ELSE change to union?
I was wondering if it is possible to change a CASE when then else to a union all, or something like this.
I hope that it is possible ...
example
CASE WHEN(C.Salutation = 'Dhr.' OR C.salutation = ...
0
votes
2answers
55 views
Weird behaviour in XCode [duplicate]
Just wanted to get your thought on this, I recall reading that property declarations are forbidden inside switch-case statements (i.e. case:ABC int i=0; is not allowed)
I came across something rather ...
0
votes
1answer
43 views
VB.net SQL variable input value has no effect depending on position in select case statement - zeros output to columns
I have setup a case statement below that looks at the student year (stuyear) (which will ultimately be triggered by an asp.net control. The case is set up to include this in the calculations when it ...
1
vote
1answer
160 views
Oracle SQL Conditional Outer Join using case statement
Lets say that I have three tables:
1. TableA with columns TableAID (PK), Desc Nullable
2. TableB with columns TableBID (PK), TableAID(FK) Nullable
3. TableC with columns TableCID (PK), TableBID ...
0
votes
2answers
66 views
splitting values to a column with case statement in sql server
Need help in splitting values in a column. Here's what I got so far
select
recordid, productname,
case when future06 like '%418%' then (Books
case when future06 like '%421%' then (Video) else null
...
0
votes
3answers
127 views
Switch with strings
Somehow my switch statement goes through none of my cases, but shouldn't it go in one?
(I am using http://stackoverflow.com/a/4014981/960086 as a reference).
There is no output, and application is ...
-4
votes
3answers
142 views
Case Statement Issue, subquery in 'Then' [closed]
I am having a bit of an issue in getting my case statement to work. I've checked the sub queries and they work as i need. However it is not executing in sqlplus.
Any theorys? would i have to call it ...
0
votes
1answer
102 views
How to convert input form a checked list box into an index and have that index work across two forms?
My checked list box has 200 thing that will need to be converted into an index. This index will have to work across two forms. So dealing the variable in a modular will be a logical action. However in ...
1
vote
1answer
86 views
ORACLE: INSERT SELECT FROM 2 views and value from param
I'm trying to insert some fields into MYTABLE from views MYVIEW1 and MYVIEW2 and then add a value from a parameter (this is part of a stored procedure) for UPDATED_BY, SYSDATE for UPDATED_ON. How can ...
3
votes
2answers
306 views
IF and Case statements in MySQL
I would like to select * if 5 is greater than 2, if false select a particular column. Where am I going wrong?
SELECT IF(5>2, *, column_x),
CASE whereheard_name WHEN 'Newspaper' THEN 'a'
...
0
votes
0answers
69 views
show images in GridView over specified time period
Hi I’m trying to shows how to work out through a case statement how when the date reaches a certain point (say for example 10 days before the date assigned in the specified row) one of the images will ...
1
vote
2answers
314 views
CASE Statement in where clause using equal to and IN
WHERE CONDITION1='ABC'
AND Status =
CASE @Option
WHEN 1 THEN 'True'
WHEN 2 THEN 'False'
WHEN 3 THEN NULL
WHEn 4 THEN **IN ('True', 'False', ...
0
votes
1answer
86 views
MySQL procedure cases won't return null
I am writing a procedure that will show whether a current student is in a table. After testing it, I am getting a couple of errors...
Create procedure stuID(p_id int)
begin
declare v_msg ...
-2
votes
3answers
451 views
Looping VBA Case Statement
Currently I have the same code in each Case statement and sometimes I have to repeat it 50 times, is there a way to simplify this:
For each one I am having to create 40 frames each one names ...
1
vote
3answers
289 views
Nested switch? Or other solution checking different conditions?
Okay, the situation is as following:
I have one client that has 2 settings: ConnectionState and ConnectionSollState, both the same enumerable (TypeConnectionState), they store the actual state of the ...
0
votes
1answer
86 views
SQL Subtracting OverNight Time (returning only minutes) Get rid of negative time?
I have a bunch of start and end times:
Start End Delta
20:47:22 22:47:02 120
22:49:12 0:48:47 -1321
0:50:42 2:50:22 120
...
23:11:07 ...
7
votes
3answers
616 views
SQL compare string
CASE
WHEN ' 1a' = ' 1a '
THEN 'EQUAL - but it isn´t- HELP!!!!' ELSE 'UNEQUAL'
END
from dual;
Can anybody help me, an explain to me why the DB say that these
2 ...
0
votes
1answer
123 views
Dynamic order by date data type in Oracle using CASE
My code in the stored procedure:
SELECT * FROM
my_table ir
WHERE
--where clause goes here
ORDER BY
CASE WHEN p_order_by_field='Id' AND p_sort_order='ASC' THEN IR.ID end,
CASE ...
0
votes
3answers
412 views
SQL Server 2000: select into case when in order by clause
I am trying to select rows into a temporary table with a CASE statement in the ORDER BY clause but records are not being sorted on insert.
Declare @orderby varchar(10) , @direction varchar(10)
set ...
1
vote
1answer
391 views
MySQL 5.5 Query Based on IF statement
I've been battling with this for too long so I'm here to ask for help...
I have a MySQL stored procedure that I want to do the following:
given an 'id' and a 'username' for a given record
if id ...
1
vote
1answer
114 views
Funny Behavior in SQL Case Statement, Certain case always gets hit
I'm running the following SQL but the 0 case seems to always get hit:
select
ccy.numberofdecimals,
ABS(round(ts.TRADECCY1AMOUNT, 2)),
CASE
WHEN CCY.NUMBEROFDECIMALS = 0 THEN
...
0
votes
2answers
192 views
PHP function error Can't use function return value in write context - function returning an array. Brain slowly imploding [closed]
I am calling a function that returns an array, but I'm running into this error: Can't use function return value in write context
Lots of people get this error, but I can't see what I've done wrong.
...
1
vote
1answer
262 views
Using float numbers in case statements ABAP
I try to use float numbers to case - endcase, but dot is problem.For example
CASE constant.
WHEN 3.14. // after 3, problem.
WRITE / 'That's a pi'.
How can I solve that? Thank you.
3
votes
1answer
98 views
Scala warning erasure in case
I have the following pattern matching case in a scala function:
def someFunction(sequences: Iterable[Seq[Int]]):Seq[Int] = sequences match{
case Seq() => Seq(1)
case _ => ...
...
}
...
2
votes
2answers
8k views
Case Statements/Decode Function in Informatica
Could anyone help me with writing case statements in Informatica PowerCenter Designer? I am fairly new to Informatica, and based on my limited experience I feel case statements aren't supported. There ...
1
vote
5answers
828 views
SQL: How can i build a string from column values of one row?
I have rows like this...
| NAME | RED | BLUE | GREEN |
LeAnn 1 0 1
Jim 0 0 0
Timothy 1 1 1
I want to write a select ...
1
vote
4answers
456 views
SQL - Creating A Conditional Where Clause For This Simple Query
I've been trying to create a conditional where clause for my query below but I keep seeing so many alternatives I'm not sure what to use in this case.
What I need is something along the lines of ...
2
votes
2answers
107 views
Dynamic case when
SELECT
COUNT(id), AgeRange
FROM
(
select
id,
case
when age < 0 then 'less than 0'
when age >= 0 and age <=30 then '0-30'
when age ...
2
votes
2answers
649 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 ...
1
vote
4answers
255 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 ...
2
votes
2answers
340 views
EF 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:
...
1
vote
3answers
1k 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 ...
3
votes
2answers
1k 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
4answers
107 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 ...
0
votes
2answers
368 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
1answer
790 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 ...
3
votes
2answers
764 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
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 ...
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) = ...
1
vote
1answer
35 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
347 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, ...
2
votes
1answer
208 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)
...
1
vote
5answers
842 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?
5
votes
2answers
241 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 ...
2
votes
1answer
66 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
974 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
172 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 ...


