Tagged Questions

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: ...
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
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
504 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
328 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
437 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
52 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
109 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
1k 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
0answers
160 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
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
518 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
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 ...
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
2answers
525 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
935 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 ...
0
votes
3answers
2k views

LIKE operator for Progress DB SQL

I'm trying to do something like this in Progress SQL (THIS IS NOT POSTGRES!) SELECT CASE WHEN code LIKE '%foo%' THEN 'Y' ELSE 'N' END as foo FROM bar However Progress does not support a ...
0
votes
2answers
313 views

TSQL - How to return 2 values with one case statement?

Is there a way to use one CASE statement and return 2 different values? Following query has 2 CASE statements with same conditions. select case when DA.value = 1 then da.Good else da.Bad end as ...
0
votes
3answers
1k views

SQL CASE Statement

Is the following possible in SQL Server 2000? CREATE FUNCTION getItemType (@code varchar(18)) RETURNS int AS BEGIN Declare @Type tinyint Select @Type = case len(@code) WHEN 12,14,17 THEN 1 WHEN ...
-2
votes
4answers
55 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 ...