문제

I was just wondering if it would be possible to have a CASE statement in a WHERE clause exactly in this form...

SELECT *
FROM TABLEA
WHERE date between '2014-02-01' and '2014-02-28' and
CASE
   WHEN date>'2014-02-28' THEN (SELECT FROM TABLEC WHERE...)
   ELSE (SELECT FROM TABLE B WHERE...)
END

Thanks!

도움이 되었습니까?

해결책

Yes, this is possible under the following circumstances:

  1. The subqueries are returning one value.
  2. There is an outside comparison such as = or >

The case statement returns scalar values. A row with one column and one value is "equivalent" to a scalar value. So, the following would be allowed:

where col = (CASE WHEN date > '2014-02-28' THEN (SELECT max(col2) FROM TABLEC WHERE...)
                 ELSE (SELECT min(col3) FROM TABLE B WHERE...)
             END)

But, you probably want to do a conditional in statement. Eschew the case:

where date > '2014-02-28' and col in (SELECT max(col2) FROM TABLEC WHERE...) or
      date <= '2014-02-28' and col in (SELECT min(col3) FROM TABLE B WHERE...)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top