Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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.

Answers were Sorted based on User's Feedback



23. Display the client name for all clients who have placed an order where any order line has more ..

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

23. Display the client name for all clients who have placed an order where any order line has more ..

Answer / name

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

Is This Answer Correct ?    3 Yes 1 No

23. Display the client name for all clients who have placed an order where any order line has more ..

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

More Oracle General Interview Questions

What are a cluster and non-cluster index?

0 Answers  


What is partitioned table in Oracle?

0 Answers   MCN Solutions,


How to get a list of all user accounts in the database?

0 Answers  


How do I limit the number of oracle database connections generated by weblogic server?

0 Answers  


Can we create trigger on materialized view in oracle?

0 Answers  


What is proxy method?

0 Answers  


Is rowid unique in oracle?

0 Answers  


What are the Limitations of a CHECK Constraint ?

5 Answers  


what are the diffeenes between oracle 9i,oracle 10g

2 Answers  


how many types of index?

2 Answers   Cap Gemini, TCS,


How to find the date and time of last updated table?

4 Answers  


If I have a select statment which retrives 2 rows, & that rows have the same data in all the fields except the last field and I want to merge the 2 rows to be in 1 row with concatenating the last field which have the different data.... eg: the 1st row has these fields: A-B-C the second row has: A-B-X ........ i want to merge the two row to be in one row like ----> A- B- C,X

2 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)