この複雑な sql ステートメントを JPQL に変更するにはどうすればよいですか?
select a.name, a.surname, b.street, c.location, c.location_desc
from table1 join table2 on b.id = a.some_fk
left join table3 d on d.id = a.id
left join table4 c on c.some2_id = d.some2_fk where a.id = 400;
これを JPQL 形式で提示することは可能ですか?