1
I created the following`query:
SELECT
o.codigoChamado,
o.codigoOrcamento,
group_concat(o.conteudoOrcamento),
o.observacaoOrcamento
FROM
Orcamentos as o
group by
o.codigoChamado,
o.codigoOrcamento,
o.observacaoOrcamento
order by
o.codigoOrcamento
When executed directly in the base I can get the expected result normally, but this query
must be executed via JPQL and group_concat
is not native to JPQL, there is something I can replace the group_concat
but still get the same return?