Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Challenging SQL Query Problem. Can you solve it?
Karen Hill wrote:
> X-No-Archive:yes
>
> T3 wrote:
>
>>After looking at both your queries I think it's best if you just >>combine them into one that sums both sold and lost for each >>salesperson. I think this will work for you. >> >> SELECT leads.salesman AS Salesperson, >> COUNT(DECODE(LOST,-1,1,0)) AS [Number of Lost], >> COUNT(DECODE(SOLD,-1,1,0)) AS [Number of Sales] >> FROM leads , salesman >> WHERE leads.salesman = salesman.salesman >>GROUP BY leads.salesman; >> >>I do not have the tables to run but am pretty sure it will work for >>you. >>
There is no such thing as an Oracle database without it.
Why are you posting in c.d.o.misc if you are not using Oracle?
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Thu Dec 22 2005 - 16:39:08 CST
![]() |
![]() |