Hi All,
 
Sorry for an off-topic question.
 
I have a container managed persistence entity bean and I want a finder method to return row with largest ID.
 
Normal SQL statement is like this
SELECT      *
FROM         Customer
WHERE      CustomerID =
(   SELECT     MAX(CustomerID)
    FROM        Customer    )
 
The question is how could I translate this SQL statement to WebLogic Query Language
 
Thanks a lot,
Kevin
 

Reply via email to