Tagged Questions

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
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
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
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 ...
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
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
2answers
364 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
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
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
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
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
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. ...