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
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
What is MTTR advisor in Oracle?
What are the oracle differences between nvl and coalesce
What privilege is needed for a user to create views in oracle?
What is a named program unit?
What are the differences between char and nchar in oracle?
How do I reset a sequence in oracle?
Who developed oracle & when?
How do I use os authentication with weblogic jdriver for oracle and connection pools?
WHEN CURSOR MOVES FROM ONE FORM TO ANOTHER FORM, HOW MANY TRIGGER WILL BE FIRED AND WHAT ARE THEIR SEQUENCE?
Explain view?
What is oracle latest version?
Is it possible to insert comments into sql statements return in the data model editor ?
How do we represent comments in oracle?
How do we create privileges in oracle?