• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Mock Exam Q.12.page 428 HFEJB

 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All
THe question 12 on page 428 says answer D is correct. Does not this answer return all the order even the ones that have no line items.
Thanks

Here is the reference of the question
Given CMP beans
CustomerBean (1) <-----> OrderBean(n)
OrderBean (1) <------> LineItemBean(n)

Which will return all the orders that have line items?

A. SELECT DISTINCT o
FROM Order o, IN (o.lineItems)li
B SELECT DISTINCT (OBJECT)o
FROM Order o, IN (o.lineItems)li
C SELECT OBJECT(o)
FROM Order o
WHERE o.lineItems = 0
D SELECT OBJECT(o0
FROM Order o
 
Ranch Hand
Posts: 173
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I agree with you, Girija. The book seems wrong.
 
Ranch Hand
Posts: 1683
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This issue has been answered here.
 
Girija Siva
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Simon and Roger
 
reply
    Bookmark Topic Watch Topic
  • New Topic