I have query
down running in my code but using the actual names of the table and fields, the same structure below works, but how do I do the same but using the JPQL
language, I am using names generic table and fields just to make it easier to understand.
@Query(value = "select rc.* from tabela1 i join tabela2 rc on rc.campoA= i.campoA")
public Page<Tabela2> trazerResultado(Pageable pageable);