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

select order_no,count(item_id) from client_order
group by order_no having count(item_id)>3

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we use bulk collect in oracle?

536


Name the various constraints used in oracle?

564


What is a relational database management system?

677


What is a table index in oracle?

632


What is the implicit cursor in oracle?

570






Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.

1648


What is oracle open database communication (odbc)?

559


What are the different windows events activated at runtime ?

2410


How to turn on or off recycle bin for the session?

610


What is a user role in oracle?

613


What are group functions in oracle?

585


How to connect to the server with user account: sys?

564


Differentiate between translate and replace?

629


Please explain compound trigger in oracle?

598


What to do if the binary spfile is wrong for the default instance?

563