Posts by user2246065 • 16 points
2 posts
-
0
votes1
answer75
viewsA: Field Unique Update with Hibernate
This is database constraint. Hibernate cannot treat this constraint. What you can do is remove the constraint (be careful with this option) or check if this restricted field already exists before an…
hibernateanswered user2246065 16 -
0
votes2
answers798
viewsA: Sum with Internet Oracle
You can put C.NOME_PRODUTO in select and Group by. Thus the result will return the desired grouping SELECT C.NOME_PRODUTO, c.COD_PRODUTO, SUM(b.QTD_SALDO) AS SALDO FROM ESTOQUE_1 b INNER JOIN…