I have 2 tables A and B
Table A and table B have 10 each attributes
I only want to return 2 and not all 10 attributes of each table
(I want to have an Index-Only-SQL-Accesspath on my DB-Server)
How to build a JPA-Query like this:
select a.name, a.street, b.city, b.country from ... ?