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
2answers
1k views

MySQL SELECT CASE WHEN something THEN returning null

Table who wid--name-------father---mother 1---Daisy------David----Liza 2---Jenny------Joe------Judy 3---Meggy-----Mike-----Manuela 4---Sarah------Joe------Judy 5---Chelsea----Bill------Hillary ...
1
vote
2answers
698 views

Help with MySQL and CASE WHEN with a range of values

I have an accounts table and a records table where accounts have multiple records. I would like to break down the account totals by "count of records" range. i.e. show the breakdown of Count of ...
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
1answer
2k views

Alternative to MySQL CASE/WHEN?

I'm trying to select some integer values in MySQL. Several of the values are zero, which I want to grab as an empty string, and grab the integer values when available. So I have something like this: ...
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
1answer
43 views

MYSQL select mutual friends

My 'friends' table has the following columns: id, userID, userID2, state userID and userID2 don't have a specific order of being put into the database. I currently use this query to find a users ...
0
votes
1answer
27 views

Mysql Case When for different tables

Can we use mysql case when to query different tables, for example after FROM or JOIN ? So basically my database has post_type which I'm gonna link to other tables such as blogs, photos, etc, and I ...
0
votes
1answer
54 views

Case when statement in SSRS (IIF)

I need to create a dynamic chart header which references parameter titles. Initially I was using the following syntax: ="City:" + Parameters!City.Value + "Store:" + Parameters!Store.Value However ...
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 ...
0
votes
1answer
395 views

LINQ to SQL lambda exp. OrderBy, Case When,Dynamic Where

I'm using linq to sql and linq dynamic where and order by. I want to convert the code below(ASP) to C#.net function getTestimonialList(statusCd) sWhere = "" if statusCd <> "" ...
0
votes
2answers
2k views

Mysql query select case when true insert

does anybody know how to do this syntax below in mysql? without Stored Procedure and in single query only SELECT CASE WHEN COUNT(v.value) = 0 THEN ( INSERT INTO tbl_v (fid, uid, VALUE) ...