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 / rharshad

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

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is oracle latest version?

588


What is an oracle user account?

585


What is Java Pool in Oracle?

608


What is Library Cache in Oracle?

645


What is the purpose of tables, private synonyms and public synonyms in Oracle?

593






What is data type in oracle?

568


How do you find out from the RMAN catalog if a particular archive log has been backed-up?

1663


How to connect asp pages to oracle servers?

579


How do I spool in oracle?

545


What is the oracle implicit cursor?

600


What is a snapshot in oracle database?

583


What is a user account in oracle?

633


How to use subqueries in the from clause in oracle?

584


Can any one explain me when i execute below query.. select months_between('07-JUL-12','10-FEB-12') from dual; Out put:- 4.90322581 How oracle calculate?

936


How to get a list of all background sessions in the database?

542