RE: Irritating problem
Date: Mon, 7 Nov 2011 22:28:27 -0000
Message-ID: <F1A191B056E5E04EA2134D842F9396F827D0ABA2_at_sunmsx01.Corp.Acxiom.net>
Hi Jack,
Thanks for the suggestion. I maybe didn't explain my problem clearly enough.
I cannot use sum as each row in the table would need to return a value for the indicator flag.
Lee
From: jack.van.zanen_at_gmail.com [mailto:jack.van.zanen_at_gmail.com] On
Behalf Of Jack van Zanen
Sent: 07 November 2011 22:19
To: Robertson Lee - lerobe
Cc: oracle-l_at_freelists.org
Subject: Re: Irritating problem
SELECT CASE WHEN SUM ( CASE WHEN readership_often_saturday = 'One' THEN 0.25
WHEN readership_often_saturday = 'Two' THEN 0.5
WHEN readership_often_saturday = 'Three' THEN 0.75
WHEN readership_often_saturday = 'Four' THEN 1
END) > 0 THEN 'Y' ELSE 'N' END AS reader
FROM lee;
Jack van Zanen
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies. Thank you for your cooperation
On Tue, Nov 8, 2011 at 8:36 AM, Robertson Lee - lerobe <Lee.Robertson_at_acxiom.com> wrote:
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.
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Mon Nov 07 2011 - 16:28:27 CST