23. Display the client name for all clients who have placed
an order where any order line has more than 3 items. Do not
use a table join anywhere in your query.

Answer Posted / name

select client_name,count(item) from clients where item=
(select Item from items )
having count(item)>3

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can objects of the same schema reside in different tablespace?

590


What is the quickest way to export a table to a flat file?

572


What is connection pooling in oracle?

552


How to loop through a cursor variable?

569


What privilege is needed for a user to insert rows to tables in another schema?

562






How to increment dates by 1 in oracle?

562


Differentiate between function and procedure in oracle.

561


What language does oracle use?

598


How to do clean up if create database failed?

576


Why does Oracle not permit the use of PCTUSED with indexes?

1953


How do I find the database name in oracle?

601


Explain what are the type of synonyms?

582


Why cursor variables are easier to use than cursors?

570


How to start a specific oracle instance?

584


What are the arithmetic operations?

588