Good evening guys, I'm trying to create a namedquery
with a query in the database.
Following:
@NamedQuery(name="ListagemProdutosMesa",query="select Produto p FROM Produto p, Pedido pe, Conta c, Pedido_produto pp where pe.id = pp.pedido_id and pp.produto_id = p.id and c.id = pe.conta_id and c.id=:idConta")
Where this table Pedido_produto
is the table created just to reference the foreign keys (I think the problem is there).
The funny thing is that this query
good wheel right in Postgres
and Java
is giving error. Could someone help me ???