In SQL, the CASE expression executes a list of conditions, returning the result where the condition evaluates to true.

learn more… | top users | synonyms

0
votes
1answer
13 views

Select with when and sum

i have table Match and i need sum of goals. If Match.Home_team='Tupesy' I need sum of Match.Home_team='Tupesy', else sum of Match.Away_goals. Now i have this, but is totally wrong :/ SELECT *, ...
0
votes
2answers
15 views

mssql query join to work out esclation person based on discounts percentage

Hi I have the below working query(mssql) select max(load_number) load_number,max(linediscount) maxlinediscount,max(CustomerBand) customer_band from [Linked_Order_lines] join ...
1
vote
2answers
23 views

MS SQL Conditional case in where clause

I would like to write the following as a CASE statement in my WHERE clause, but I'm unsure how to write it. if @Result = '' then [Result] = @Result else [Result] like @Result + '%' endif
0
votes
0answers
17 views

SQL server 2008 group every 2 in case when

I would like to see how many days a customer visits the website on average every 2 weeks. To get that, i found how many days a customer visits a week, and I want somehow to group the weeks in a case ...
0
votes
1answer
23 views

Mysql query case with range, and case with currency

I have a table 'order' where the columns pretty much look like this: | order_id | shop_id | order_total | currency | created_at | Now I want to make a query, that returns a table looking like this: ...
0
votes
3answers
35 views

Returning a Random nextBoolean in a user defined method accessed by switch case statement in java

I am trying to get my program to work the way I want. When I go in the switch statement I want to have the user type in a value and go to that corresponding user createdmethod. When in one of the user ...
1
vote
2answers
41 views

in Java, can I keep tracking all the value in a switch statement for each case?

I am just starting the learn Java, I need to use a switch statement, but I need to keep track of all the value of calculation for each case and then need to add it up. how can I do it? and here is my ...
1
vote
2answers
51 views

SQL- Selecting Columns based on Date and Batch Number

I'm close, now I am just having trouble with this code. It says I need to add exists somewhere? Thanks for the help! SELECT (SELECT UA#SacmiDataLog_2013.NS_Inlet_T , ...
1
vote
1answer
13 views

Use an If or Case statement to create an amended field for a new view in existing db in SSMS2008

New Field = If Field X = 0 and Field Y = 12 THEN 15 ELSE New Field = Field X The following worked fine in ACCESS, Amended Run No: IIf([001_DETAILS]![tlRunNo]=0 And ...
0
votes
1answer
43 views

Laravel Eloquent Select CASE?

Is there anyone with experience in PHP & Laravel Eloquent who can help me resolve this statement? I'm trying to inject a CASE... WHEN.. END... inside a raw() method. It seemed like it was ...
0
votes
3answers
16 views

Using switch on $_GET with if

So I'm trying basically to make it like: ?p=blabla&dep=blabla switch($_GET['p']) { case 'home': include("template/index.html"); break; case null: include("template/index.html"); ...
2
votes
2answers
21 views

mysql query with case using result as a variable

I need a query like following that doen not work: SELECT *, CASE WHEN x_sutun1 = '1' OR x_sutun2 >= CURRENT_DATE() THEN 0 WHEN x_sutun1 < 1 AND x_sutun2 < CURRENT_DATE() THEN 1 END ...
0
votes
2answers
35 views

Case Statement results in the Where Clause

I have a case statement result that I need to use. I want to place it in the Where clause, but becase of the complexity of the CASE Statement, I am having some difficulties. Here is my CASE ...
1
vote
1answer
19 views

Overtime in MySQL timecard over two weeks

I'm trying to figure out how to calculate the overtime on timecard bills that have been or need to be paid. The problem is that bills cover more than one weeks worth of hours and the query grabs more ...
0
votes
1answer
29 views

SQL Case in Where Clause with between operator

I need to get a set of records based on the below points: If (startdate and endate are not null then opendate shoudl be between startdate and enddate) or (closedate should be between startdate and ...
0
votes
1answer
15 views

How to conditionally show fields based on value

I'm trying to use a calculation field to conditionally display one of two other fields based on whether or not each one has a value. Only one of the fields I'm looking at can actually have a value. ...
2
votes
4answers
72 views

Scala Extractor unapply called twice

I just discovered that unapply in my extractor is being called twice for some reason. Anyone know why, and how to avoid it? val data = List("a","b","c","d","e") object Uap { def unapply( s:String ...
0
votes
2answers
25 views

Getting CAST and CASE together

I've got a horrible problem query to write SELECT TOP 25 uinv = (CASE WHEN exported = 1 THEN 'Sent To Accounts' WHEN queued = 1 THEN 'Finalised' WHEN reviewed = 1 THEN 'Pro Forma' ...
0
votes
1answer
33 views

php case argument for loop

I need some help writing loops and passing arguments to functions. switch ( $action ) { case 'listItemTypeOne': listItems(TypeOne); break; case 'newItemTypeOne': newItem(TypeOne); ...
2
votes
2answers
58 views

CASE Oracle SQL for State

I have a field that can have one or multiple states listed in it (callcenter.stateimpact). If the callcenter.stateimpact contains "OK","TX","AK","TN","NC","SC","GA","FL","AL","MS" or "LA" I need the ...
-3
votes
2answers
44 views

TSQL OR inside CASE statement's THEN section [closed]

I need to use an OR statement inside a CASE statement's THEN Section... Something like this. DECLARE @myColorPreference varchar(10) SET @myColorPreference = 'ANY' SELECT BikeColor, Make, Model FROM ...
1
vote
1answer
48 views

Use CASE to build SQL WHERE clause

note: Updated, as I think I need to use something similar to CASE I have a form which has 3 address inputs: Suburb Postcode State I want to use these 3 form fields to populate the where clause of ...
1
vote
1answer
34 views

large update statement with case and multiple insert / updates in each case

I am not sure how to ask this question but here goes. I am trying to write a procedure to run each night that checks all unpaid invoices for a business and then adds service charge if needed. I need ...
-1
votes
1answer
67 views

Create box with title and text in silverlight

can I create something like this in silverlight? A box with editable title and the rest of the text ...
-1
votes
0answers
67 views

PHP: Text field updating another file

I develop a text based rpg game, and I can't get this part of my chat page to work. The chat display page (not all the functions page) has an "Away, Busy etc" part of the chat, I would like to add a ...
0
votes
1answer
12 views

Is it possible to do a case statement comparison on an assigned variable in sql server?

Is it possible I can do the case comparison on the assigned variable 'YRSUMGTHAN75'? When I try to do the case statement it barks at me saying 'incorrect syntax near '>''. Here's my SQL: SELECT ...
0
votes
2answers
23 views

String wired to Case Structure always goes to Default - LabVIEW

I am trying to take the readout from an instrument and if the readout matches certain strings (from the instrument programming manual) I want to set an indicator to a specific value, different for ...
0
votes
1answer
21 views

Case sensitive variable within .bat file

I have an extremely simple batch file with a very annoying problem. I am trying to stop a process via its TASKKILL using it's image name (/IM). The problem is I have two image names that are the same ...
0
votes
1answer
32 views

SELECT several columns based on one condition

Is there a way to generate more then one column based on one condition? My perception is like: SELECT CASE WHEN condition_column = 'condition true' and (condition_column2 = 'condition true' or ...
0
votes
1answer
29 views

Using case expression in a view statement

I have been searching for a long time how to do this, however due to the words involved when searching it is incredibly hard to find something close to what I am trying to find out! How can I use the ...
1
vote
3answers
38 views

Case sentence using SQL

I am using double case sentence to get a value from column in a table based on 2 conditions that are available in 2 other columns in same table , and else (otherwise) the function should give null ...
0
votes
2answers
256 views

Mysql FullText Search Case-insensitive

I have table products_discription from OpenCart. I created new search engine. Everything is okey, except that is case sensitive. How I can make it insensitive. I readed in Mysql Documentation I must ...
1
vote
2answers
19 views

sql in() function on case statement

the code below is not working for me and I would like help with a work around if possible. I'm trying to exclude certain elements in based on dates but I'm having no luck. My code so far looks ...
2
votes
1answer
56 views

CASE WHERE change operator - TSQL

I was wondering if you could do a case statement in the WHERE clause which changes the operator. What I am trying to do is filter out results based on a boolean value. SELECT * FROM table1 WHERE ...
3
votes
2answers
48 views

C/Arduino Switch Case

I'm writing a code on Arduino (very similar to C, which I don't know, or very little), and I have a little issue concerning the Switch/Case statement, I need my Arduino to do this or that depending ...
0
votes
1answer
22 views

Case Clause in Select Statements Visual Web Developer

I'm having some trouble getting the required output. Currently I have two textboxes that search a database and display the results (SerialNumber and SiteID). Right now only when both of those boxes ...
0
votes
1answer
33 views

Having trouble with case in sql

Im trying to get all the numbers in my table, starting with a certain number. But sometimes my system save numbers wrong, and puts 1234 in front of the real number. So if the number looks like this: ...
0
votes
0answers
16 views

Syntax for Case function with join inside of subquery in t-SQL

Need help getting this query to run: select state, count(state) from ( select (case c.state when states.abbreviation then c.state when null then 'Unknown' ...
0
votes
1answer
40 views

FollowUp help/advice needed ---Java BankAccount app - reuse variable in cases through switch statement

Follow up question, need help with case 5 - using this code and joptionpane to display output. How would I call objects from the arraylist(database =db/deleted) in meaningful results? I am able to ...
0
votes
2answers
21 views

Null Date returning invalid date

Trying to change NULLs in a date field into blank results but it keeps returning a date. I'm doing it in a case when as i need to meet the following criteria: CASE WHEN closed = 'y' THEN Date ELSE '' ...
1
vote
2answers
45 views

How to read only date from sql server 2008?

DECLARE @temp TABLE ( iLeadID INT , Title VARCHAR(MAX) , AlertDate DATETIME ) DECLARE @iLeadID INT DECLARE @getiLeadID CURSOR SET @getiLeadID = CURSOR FOR SELECT iLeadID FROM ...
2
votes
2answers
38 views

Javascript switch wrong case

Hello (yet again) a question about javascript, this one has to be an easy one but I just can't see what I did wrong, I think something really stupid: I have a textbox and a button. When i click the ...
1
vote
2answers
46 views

Java reading upper/lower case characters and converting them

Okay, so I have another program. This one should be rather self explanatory. This program is made to read characters from continuous java input (line after line) until the . is entered. It then ...
0
votes
1answer
29 views

SQL Search and Compare funtion

I know very little about MS-SQL, but I need to perform a report. I've this query: Select a.HPD_CI as HPD_CI_Grouped, count(a.HPD_CI) as HPDCant, b.submit_date From HPD_Help_Desk a, ...
-1
votes
1answer
35 views

How to combine Case with shift and add results in a list in bash

When I write parameters they should be checked in a case and then added in a list if u type -c in front the parameter should be in uppercase and if u type -4 the parameter should appear 4 times ...
-4
votes
2answers
47 views

SELECT with IF? [closed]

I've this table: Promo: idArt, idArtVar, Field, idPeople ArtLis: idList, idArt, Price LisArtVar: idList, idArtVar, Price People: idPeople, idList I need to do Promo JOIN People by idPeople to read ...
1
vote
1answer
25 views

Title Case in AutoHotkey

Is it possible to transform the text in the Clipboard in a Title Case form? For example if the text in the clipboard is "The quick brown fox" then the script will have to transform it into: "The ...
1
vote
4answers
55 views

If/then/else in SQL Query

I would like to check a date value in my SQL query. If a date is equal to a predefined date then do not print anything, ELSE print the existing date value. How can I write it correctly in order to ...
1
vote
1answer
54 views

Adding or subtracting values based on another field's contents

I have a table with transactions. All transactions are stored as positive numbers, if its a deposit or withdrawl only the action changes. How do i write a query that can sum up the numbers based on ...
0
votes
0answers
10 views

searching stackoverflow with case sensitive tag or string [migrated]

I am trying to search StackOverflow itself for questions with a tag or string matching "Curl" but not "cURL" ( for "Curl" the MIT web language now owned by Tokyo-based SCSK and not "cURL" ) Is there ...

1 2 3 4 5 27