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 to view the tablespaces in the current database?
What are group functions in oracle?
Explain the dml?
Can we insert data in view oracle?
How to insert multiple rows with one insert statement in oracle?
What is a private synonym?
How can we find out the current date and time in oracle?
What are the differences between number and binary_float in oracle?
What is the relationship among database, tablespace and data file?
What is ceil and floor in oracle?
What are the attributes that are found in a cursor?
How to declare a local variable?
How to display employee records who gets more salary than the average salary in the department?
How can I see all tables in oracle?
What is an oracle data file?