Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: SELECT with IF THEN ELSE

Re: SELECT with IF THEN ELSE

From: WebTracer <randy_at_webtracersolutions.com>
Date: 20 Dec 2004 10:14:47 -0800
Message-ID: <1103566487.843697.97680@c13g2000cwb.googlegroups.com>


Thanks. Can't seem to get this to work:

SELECT SELECT_FROM_PART, SUM(QTY_DUE), CASE SUBSTR(REQUEST_ID,1,1) WHEN != 'I' THEN SUBSTR (REQUEST_ID,3,4) ELSE NULL END, NEED_DATE, REQUEST_ID
FROM REQ1
WHERE STATUS IN ('O','H')
AND (SELECT_FROM_SC LIKE '1ASL%' OR SELECT_FROM_SC = 'LASR') GROUP BY SELECT_FROM_PART, SUBSTR (REQUEST_ID,3,4), NEED_DATE, REQUEST_ID
ORDER BY SELECT_FROM_PART Doesn't like != 'I' ... why is that? Received on Mon Dec 20 2004 - 12:14:47 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US