Posts by Bruno Henrique • 15 points
3 posts
-
0
votes1
answer50
viewsQ: Add a column where its values are already the result of another sum
I have 2 tables in a database, one contains the purchase orders, another contains the items of these purchase orders, this data is obtained from an import from another system so I do not have…
-
0
votes2
answers190
viewsQ: How to disable required when your input is not visible
I already apologize from now on if I can not be clear enough, but I needed to make a form that when they marked certain checkbox, would appear Ivs that would be hidden with the particular content to…
-
-1
votes5
answers97
viewsA: Doubt with Select using ORDER BY
Good afternoon, I would try to do so: select A.id_a, A.produto, A.tipo, B.id_B, B.descricao, B.dt_renovacao from tabela_A A left join tabela_B B On B.id_B = A.id_a ORDER BY B.dt_renovacao DESC…