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: Challenging SQL Query Problem. Can you solve it?

Re: Challenging SQL Query Problem. Can you solve it?

From: Karen Hill <karen_hill22_at_yahoo.com>
Date: 22 Dec 2005 13:45:39 -0800
Message-ID: <1135287939.418712.253400@g49g2000cwa.googlegroups.com>


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.
>

Thank you for your response. Is there any way to do it without the DECODE? My DBMS doesn't have DECODE unfortunately.

Thanks,

karen Received on Thu Dec 22 2005 - 15:45:39 CST

Original text of this message

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