Tagged Questions

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 ...
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 ...
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 ...
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
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
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 ...
0
votes
0answers
24 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
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
4answers
492 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 like (pseudo-code) ...
0
votes
3answers
619 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) This is an email ...