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: sql query help

Re: sql query help

From: steve <jerrysinclair_at_hotmail.com>
Date: Wed, 5 Mar 2003 00:33:29 -0000
Message-ID: <9Eb9a.10115$Vx2.768654@wards>


DA Morgan wrote...
> steve wrote:
>
>> hi peeps
>>
>> i have a table set up
>>
>> table: orderitems
>> orderid
>> productid
>> qty
>>
>> is there anyway of listing productid of items ordered x times?
>>
>> i have managed to get basic things working but found no reference to this
>> and not sure if the set up of my database would allow such a query
>>
>> cheers :)
>>
>> --
>> get me tools and beer
>
> There is indeed.
>
> SELECT productid, COUNT(*)
> FROM orderitems
> GROUP BY productid
> HAVING COUNT(*) = x;
>
> Go to http://tahiti.oracle.com and search on GROUP BY.
>
> Daniel Morgan

Thanks very much.

I didnt know it was possible, done a search on google gave me loads of other stuff and I didnt have any idea how to word the search. Never occured to me to check the oracle site!

Thanks again :)

--
get me tools and beer
Received on Tue Mar 04 2003 - 18:33:29 CST

Original text of this message

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