Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » EclipseLink » SQL to JPA
SQL to JPA [message #735204] Tue, 11 October 2011 07:37 Go to next message
Warus  is currently offline Warus Friend
Messages: 2
Registered: October 2011
Junior Member
Hi.
In my database I have a table with 3 fields: field_1, field_2, field_3 and generated entity for that table. I need to implement something like this in EclipseLink:

Select (field_1/field_3) as field_1, (field_2/field_3) as field_2, field_3 from table;

Of course this is simplified example. Is there any way to do this without NativeQuery?


thanks for any help
Re: SQL to JPA [message #735366 is a reply to message #735204] Tue, 11 October 2011 15:40 Go to previous message
James Sutherland is currently offline James SutherlandFriend
Messages: 1939
Registered: July 2009
Location: Ottawa, Canada
Senior Member

This should work in JPQL, did you try it? You will get back an Object[] of the three values.

Select (t.field_1/t.field_3), (t.field_2/t.field_3), t.field_3 from Table t


James : Wiki : Book : Blog : Twitter
Previous Topic:SQL to JPA
Next Topic:Extensible Entities
Goto Forum:
  


Current Time: Tue Apr 23 17:22:37 GMT 2024

Powered by FUDForum. Page generated in 0.03699 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top