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
11. Display the client number and name and the client number and name of the person who referred that client.
How would you best determine why your MVIEW couldnt FAST REFRESH?
What is a user role in oracle?
what is the use of triggers in Java program? I mean where do we use triggers in Java programming?
What is concurrency in oracle?
Explain the use of show option in imp command.
How to change user password in oracle?
What is set operator oracle?
What is the maximum number of triggers that can be applied to a single table?
How to export data to a csv file?
What are the numeric comparison operations?
What is SQL Tuning Advisor in Oracle?
How to get last row id?
How can I get column names from a table in oracle?
What is meant by raw datatype?