I'm not sure if I can do this in one query but I would like to.

I need all records like this:

SELECT a.field_1, a.field_2, b.field_3, b.field_4
  FROM tbl_a AS a, tbl_b AS b
 WHERE a.field_1 = b.field_3

And I would like to also exclude these records that fall into this condition:

IF a.field_1 IN (1,2,3,4) 
AND a.field_date < NOW()

UPDATE: (sorry for the confusion)

  • So if field_1 equals 1,2,3 or 4 and has a date timestamp that is today I need to display the record (add to results)
  • And if field_1 equals 1,2,3 or 4 and has a date timestamp that is less than today (remove it from the results).

Any ideas to get both results into one query

Notes (if this makes a difference):

  • field_a can have a value a-z, 1-99 (two characters only)
link|improve this question

You want to include or exclude records that satisfy your second set of conditions? – Joe Stefanelli Jun 30 '11 at 17:04
1  
You say that And "I would like to also exclude these records that fall into this condition:" and after you say "SO if field_1 equals 1,2,3 or 4 and has a date timestamp that is today I need to display the record" so it has to display or not? – Mr. Jun 30 '11 at 17:04
Yes Include if the date is today, exclude if date is less than today, but only if the field_1 is IN 1,2,3 or 4. Sorry for any confusion – Phill Pafford Jun 30 '11 at 17:05
I still dont understand why two querys in one? you need al the set of your first query plus the same one with the second condition?, if it is that way, you just have to use an union clause with the query i wrote below – Mr. Jun 30 '11 at 17:18
feedback

3 Answers

up vote 2 down vote accepted

Something like this?

SELECT a.field_1, a.field_2, b.field_3, b.field_4
FROM tbl_a AS a, tbl_b AS b
WHERE a.field_1 = b.field_3
AND (
CASE WHEN a.field_1 IN (1,2,3,4) THEN
      CASE WHEN A.FIELD_DATE = NOW() THEN 1 ELSE 0
      END
ELSE 1
END) = 1
link|improve this answer
a nested CASE, very nice. was trying a single CASE and wasn't getting anywhere – Phill Pafford Jun 30 '11 at 17:19
Good to hear that this helped you:) – Mr. Jun 30 '11 at 17:21
feedback

here's a code that should work:

SELECT a.field_1, a.field_2, b.field_3, b.field_4
FROM tbl_a AS a
INNER JOIN tbl_b AS b ON a.field_1 = b.field_3
WHERE 
(a.field_1 IN (1,2,3,4) AND a.field_date = NOW())
OR
(a.field_1 NOT IN (1,2,3,4))

Note that if a.field is unsigned int != 0 you can replace: a.field_1 IN (1,2,3,4) with a.field_1 <=4 and a.field_1 NOT IN (1,2,3,4) with a.field_1 > 4

this will make it faster in case a large recordset was in question

link|improve this answer
This result will only product items that have a field_1 of 1,2,3 or 4. What if the field_1 identifier is 5 or 6? It seems like those values should be included. I think the post is a little vague. – N. Warfield Jun 30 '11 at 17:20
@N. Warfield yeah the post is vague... I edited the answer to fit the needed results – Naim Zard Jun 30 '11 at 17:31
feedback

Let's rewrite this with a proper JOIN, and add a NOT on the condition to exclude :

SELECT a.field_1, a.field_2, b.field_3, b.field_4
  FROM tbl_a AS a JOIN tbl_b AS b ON (a.field_1 = b.field_3)
WHERE NOT (a.field_1 IN (1,2,3,4) AND a.field_date < NOW())

Since NOT( X AND Y ) is equivalent to (NOT X) OR (NOT Y) you can rewrite this as :

SELECT a.field_1, a.field_2, b.field_3, b.field_4
  FROM tbl_a AS a JOIN tbl_b AS b ON (a.field_1 = b.field_3)
WHERE a.field_1 NOT IN (1,2,3,4) OR a.field_date >= NOW())

But we'd also need to know if any of field_1 or field_date can be NULL. If that is the case, the expression "foo NOT IN (blah)" returns NULL if foo IS NULL. So you'd need to be more specific about that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.