Tagged Questions

5
votes
3answers
147 views

using CASE WHEN in select statment

I am using following for select statment with case. The column to which the CASE is applied has True, False and Null values. I am trying to display True for True and False for both False and Null. ...
1
vote
3answers
348 views

optimizing the sql query by not repeating the math

Here is the query in Oracle I was trying to remove the redundant math operation from: SELECT name, CASE when nvl(num1,0) + nvl(num2,0) - nvl(num3,0) > 0 THEN nvl(num1,0) + ...
1
vote
3answers
4k views

Multiple WHEN inside no-expression CASE in SQL?

DECLARE @TestVal int SET @TestVal = 5 SELECT CASE WHEN @TestVal <=3 THEN 'Top 3' ELSE 'Other' END I saw this sample code online but I couldn't find an example where there ...
0
votes
2answers
72 views

Sql combine WHEN and IF statement with multiple parameters

How to combine Q1 and Q2 into someting like Q5 (But working!) ? Plse? I'M stuck... SQL Server 2008 R2 Please have a look what I've tried so far: --Q1 does execute without errors: DECLARE ...
0
votes
2answers
130 views

Oracle/SQL - Select records on at specific sysdate times

I have a query that runs multiple times a day, the issue though is we want the query to only return result when it's run at certain times. So for this example I only want records to be returned when ...