Tagged Questions
The case-when tag has no wiki summary.
4
votes
4answers
239 views
SQL Server CASE .. WHEN .. IN statement
On SQL server 2005 I am trying to query this select statement
SELECT
AlarmEventTransactionTableTable.TxnID,
CASE AlarmEventTransactions.DeviceID
WHEN DeviceID IN('7', '10', '62', ...
3
votes
3answers
52 views
Confused over SQL statement for CASE WHEN inside INSERT
I have the following SQL statement (that is intended for SQL Server):
INSERT INTO t1 (c1, c2)
VALUES (1, CASE WHEN (SELECT MAX(c2) FROM t1 AS maxV) IS NOT NULL THEN maxV+1 ELSE 1 END);
I get an ...
3
votes
1answer
54 views
TSQL and case when with multiple whens?
I have several conditions and the result for those should be the same. I searched the net and found stuff like this:
CASE ProductLine
WHEN 'R' THEN 'Road'
WHEN 'M' THEN 'Mountain'
WHEN ...
3
votes
3answers
41 views
Are both queries the same?
Are both queries are same ?
Do both return the same result ?
1)
IF EXISTS(
SELECT
1
FROM
Users u
WHERE
u.UPIN = @AttendingDoctorID)
BEGIN
SELECT
...
3
votes
5answers
153 views
How do I use the value from row above when a given column value is zero?
I have a table of items by date (each row is a new date). I am drawing out a value from another column D. I need it to replace 0s though. I need the following logic: when D=0 for that date, use the ...
3
votes
1answer
1k views
Hibernate/HQL/JPQL: what's wrong with a CASE WHEN … THEN NULL ELSE … END (ClassCastException)?
I have the following JPQL/HQL snippet in a SELECT
...
MAX(CASE WHEN scf.finalScore = 20 OR scf.finalScore = 0 THEN NULL ELSE scf.finalScore END) AS hi,
MIN(CASE WHEN scf.finalScore = 20 OR ...
3
votes
6answers
2k views
correct way to create a pivot table in postgresql using CASE WHEN
I am trying to create a pivot table type view in postgresql and am nearly there! Here is the basic query:
select
acc2tax_node.acc, tax_node.name, tax_node.rank
from
tax_node, acc2tax_node
where
...
2
votes
3answers
38 views
Converting SQL CASE WHEN statement plus group statement into LINQ
How can I write in fluent linq syntax the "case when" sql statement?
select QueueItem, COUNT(*) as [Count],
SUM(CASE WHEN Queued = 0 THEN 1 ELSE 0 END) AS [Sent],
SUM(CASE WHEN Queued = 1 THEN 1 ELSE ...
2
votes
3answers
131 views
Oracle SQL case when for ordering
I have to sort out my data by some column, such that some specific value appears first. So for a query like this ...
SELECT rtrim(taskid) into v_taskid FROM tasks
where
/* some where ...
2
votes
2answers
2k views
How can I SELECT multiple columns within a CASE WHEN on SQL Server?
I have searched this site extensively but cannot find a solution.
Here is the example of my query:
SELECT
ActivityID,
Hours = (CASE
WHEN ActivityTypeID <> 2 THEN
...
1
vote
2answers
53 views
SQL - CASE STATEMENT - WHEN statement AND statement
I am having a problem trying to work out the neatest solution for the following problem.
I have a table Purchase which has a State column, whereby 1 is authorised, 2 is completed and their are some ...
1
vote
1answer
36 views
Creation of view with case when statement
Please refer to my example below for clearer understanding of what i'm doing.
Example:
Create View v AS
Select T.*, S.Name, Case When T.TESTDATE = S.STUDYDATE
Then 'Yes' else 'No' END AS TakenTest
...
1
vote
1answer
154 views
Oracle newbie error: ORA-00904 Invalid identifier when using “case when”
I'm getting an error in a query. This query is OK and returning data (the selects and rownums are for pagination):
select *
from (select a.*, rownum rnum
from (select id_edition, id_document, name, ...
1
vote
2answers
101 views
Replace SQL Query
I want to replace this Query
DECLARE @tmpUser TABLE( UserId INT, UserType INT )
INSERT INTO @tmpUser
SELECT
u.UserId,
1
FROM
Users u (nolock)
WHERE
u.UPIN = @AttendingDoctorID
IF ...
1
vote
1answer
42 views
case when with match
Is there a way to make this work correctly with a case when?
field = "head_count_2011_10_75"
case field
when match(/head_count_\d{4}_\d{1,2}_\d{1,4}/i)
puts "regex 1"
when ...
1
vote
2answers
362 views
using select with if condition in oracle
Can anyone guide me??
My requirement is to get a number from a complex query and check if the num = desiredNum.
If it is equal to desiredNum, then I must perform another set of select statements,
...
1
vote
2answers
191 views
How to use CASE/WHEN to categorise ranged values in SQL? If not possible, any alternatives?
Basically I want to be able to categorize the column selected into different range like so:
if the range > than 0 return the value of the column.
if the range < than 0 return 'Expired'.
Here is the ...
1
vote
4answers
353 views
Exception executing a stored procedure with CASE switching from C# (T-SQL)
I have a NVARCHAR(max) column in a table and a stored procedure that would update this column as well as any other column in the table using CASE switching:
CREATE PROCEDURE updateTable
...
1
vote
2answers
242 views
CASE in ORDER BY few columns
Using a case-then block, I need to choose how to order my SQL 2008 query, by [status] ASC, [date] DESC or just [date] DESC.
I know only how to use one column:
SELECT *
FROM table
ORDER BY
CASE ...
0
votes
1answer
21 views
MYSQL Select As Case when number of rows statement
I'm trying to find the number of notifications for each user, I am having a little problem, I had the query working perfect for what I needed it for, then I changed my table around just a little bit.
...
0
votes
0answers
92 views
Cant use subselect inside Then on case when … then … else
Trying to execute a subselect inside a case when with this query:
select p.id as id,
(case when (select count(vo) from ProdutoCustoVO vo where vo.produto = p) > 0
then (select ...
0
votes
4answers
93 views
SQL: Nested Condition in Case When Clause
I have a Case-When clause like this;
(CASE WHEN A.YAZ_ADRES IS NULL
THEN (B.IS_ADRES1 +' '+B.IS_ADRES2)
ELSE A.YAZ_ADRES END)
I want to use a condition after THEN
For Example;
...
0
votes
1answer
79 views
MySql Conditional Group By
Please consider my table (this is just a simplified version, in my project, I got 600,000+ records):
Id TransactionId TransactionTypeId Description
1 1 1 ...
0
votes
0answers
56 views
SQLAlchemy - SQL Server REPLICATE function
Is there a way to write this query using SQLAlchemy's Session.query? This is a SQL Server 2008 query:
SELECT
name, ..., row_number() OVER (
PARTITION BY col1, col2, col3
ORDER BY ...
0
votes
1answer
191 views
Using CASE, WHEN, THEN, END in a select query with MySQL
I'm working on a baseball related website. I have a table with a batting lineup for two baseball teams:
+----+----------+--------------+--------+
| id | playerId | battingOrder | active |
...
0
votes
1answer
197 views
Sybase expert help: groupby aggregate performance problems
Hey I have the following tables and SQL:
T1: ID, col2,col3 - PK(ID) - 23mil rows
T2: ID, col2,col3 - PK(ID) - 23mil rows
T3: ID, name,value - PK(ID,name) -66mil rows
1) The below sql ...
0
votes
2answers
48 views
Recommendations on proper refactoring in a When statement?
I'm trying to call two lengthy commands in a when statement, but for some reason, because of its syntax, it performs two of the commands twice when it is called :
@email = Email.find(params[:id])
...
0
votes
1answer
318 views
How to use a case-when statement in a mysql stored procedure?
I want to set the session_id automatically using the request_time parameter so i opted for a mysql stored procedure that contains a case statement.Here goes.
create procedure upd_userinput(in ...
0
votes
2answers
379 views
SQL Server Group by with WHEN clause
Error in group by clause ::
I want make records unique in MS sql.here i have used 2-3 tables join and when clause.
it is more difficult to make it distinct by using group by clause it gives error ...
0
votes
1answer
417 views
JPQL: boolean expression in CASE WHEN needs explicit comparison with TRUE/FALSE?
I had tried the following:
SELECT NEW com.kawoolutions.bbstats.view.ScheduleGameLine(
ga.id AS gid
, ga.scheduledTipoff ...
0
votes
1answer
104 views
Problems with case-when-value-between something -formula
I have a case in where I have product codes, which are 4 symbol long. Then in some cases products are basically same no mather of the first symbol, for example one product code would be 7456 and ...
0
votes
2answers
2k views
TSQL Case/When question
I have a huge query which uses case/when often. Now I have this SQL here, which does not work.
(select case when xyz.something = 1
then
'SOMETEXT'
else
(select case when ...
0
votes
4answers
100 views
SQL column/row format question
my query returns a column that can hold types of real estate. Values can be condo or duplex or house and so on. Instead of displaying condo, I just want a C in the column. My plan was to use a huge ...
0
votes
2answers
160 views
Easy SQL Select Case When Statement throwing an incorrect syntax error and I can't find it!
Thank you to everyone who tries to help!
I have 2 case select statements and I get the error on this statement:
Center,
Case Center
When 'Concord Call Center' Then 'CCC'
When 'Livermore Call Center' ...
0
votes
0answers
1k views
Mysql CASE - WHEN - THEN - returning wrong data type (blob)
Im creating customizable product attributes in a web store - each attribute can have different type of data, each data type is stored in a separate column using corresponding mysql datatype.
I Have a ...
0
votes
6answers
567 views
SQL Server CASE WHEN without using CASE WHEN
Is there a way to rewrite a Transact SQL statement that uses a CASE WHEN structure to do the same without using the CASE WHEN?
I'm using a product that has a built-in query designer and its own ...
0
votes
1answer
444 views
SQL: Populate single row(tbl 1) from multiple rows(tbl 2); cross DB
I have created a single table in my primary DB called tblGlobalIDMapping that will assign a GUID to all entries and store the other 3 primary ID's across the App to provide for a single ID repository.
...