Irritating problem

  • From: "Robertson Lee - lerobe" <Lee.Robertson@xxxxxxxxxx>
  • To: <oracle-l@xxxxxxxxxxxxx>
  • Date: Mon, 7 Nov 2011 21:36:05 -0000

Chaps,

Been stuck on a little bit of sql. 

Need to add up some columns with text values in them e.g 'One', 'Two'
etc etc and see if the total is > 0.

Thought I had it working but its not

I am doing 

select CASE WHEN (CASE WHEN READERSHIP_OFTEN_SATURDAY='One' 
                       THEN 0.25 END)+
          (CASE WHEN READERSHIP_OFTEN_SATURDAY='Two' 
                       THEN 0.5 END)+
          (CASE WHEN READERSHIP_OFTEN_SATURDAY='Three' 
                       THEN 0.75 END)+
          (CASE WHEN READERSHIP_OFTEN_SATURDAY='Four' 
                       THEN 1 END) > 0 THEN 'Y' ELSE 'N' END AS Reader
                       FROM lee;

Data is as follows
Two values in table for READERSHIP_OFTEN_SATURDAY
One
Four

Both values are coming back as N when I would expect an Y.

Any help appreciated, its going to be staring me in the face but its
late and Im tired.

TIA
Lee

***************************************************************************
The information contained in this communication is confidential, is
intended only for the use of the recipient named above, and may be legally
privileged.

If the reader of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or copying of this
communication is strictly prohibited.

If you have received this communication in error, please resend this
communication to the sender and delete the original message or any copy
of it from your computer system.

Thank You.
****************************************************************************

--
//www.freelists.org/webpage/oracle-l


Other related posts: