Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: sql query help
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 Received on Tue Mar 04 2003 - 18:08:23 CST
![]() |
![]() |