May 12, 2011 at 10:29 am
Welsh Corgi (5/12/2011)
If this is in Oracle then you should probably be using PL/SQL and posting your question to an Oracle Forum.
Ditto. We have a hard enough time with keeping language features straight for people posting 2000 or 2005 questions in 2008 forums let alone Oracle questions on a SQL Server Forum :hehe:
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
May 12, 2011 at 11:29 am
opc.three (5/11/2011)
I think you want to use SUM with a CASE statement. Maybe something along these lines:
SELECT SUM(CASE WHEN B.TRANS_TYPE = '2' THEN 1
WHEN B.TRANS_TYPE = '3'
AND 1 = 0 /* change "1 = 0" to your special condition */ THEN 1
ELSE 0
END) AS STARTS,
B.PROD_CODE AS pcode,
B.CODE AS CScode
FROM UNICA.SUBS B
WHERE B.TRANS_DATE BETWEEN @startdate AND @Enddate
AND (B.TRANS_TYPE IN ('3', '2'))
GROUP BY B.PROD_CODE,
B.CODE ;
Ah... sorry. I missed the post above before I posted. This'll work just fine.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 12, 2011 at 12:34 pm
You CAN use a CASE statement in a COUNT... --Jeff Moden
It's just a personal preference. I just feel happier summing ones and zeroes, than I do counting non-null values. 🙂
BTW, Jeff: My wife says she would love to see a picture of you with your binkie and a beer-popsicle. 😛
__________________________________________________
Against stupidity the gods themselves contend in vain. -- Friedrich Schiller
Stop, children, what's that sound? Everybody look what's going down. -- Stephen Stills
May 13, 2011 at 8:47 am
The Dixie Flatline (5/12/2011)
You CAN use a CASE statement in a COUNT... --Jeff Moden
It's just a personal preference. I just feel happier summing ones and zeroes, than I do counting non-null values. 🙂
BTW, Jeff: My wife says she would love to see a picture of you with your binkie and a beer-popsicle. 😛
I agree which is why I followed up say OPC's sum code would do the trick. 🙂
And your wife is going to have to wait for a very, very long time. 😛
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 16 through 18 (of 18 total)
You must be logged in to reply to this topic. Login to reply