Posts by Lucas Simões • 21 points
2 posts
-
0
votes1
answer26
viewsQ: Redirects to API’s
Good afternoon devs! My problem is this: I have a desktop application in Delphi that uses some services in a web application. I had to migrate the web application to another host and change the…
-
2
votes2
answers128
viewsA: Date balance in mysql
To return the sum of values per client: $mes = date('m'); $ano = date('Y'); SELECT sum(valortotalPedido) FROM pedidos WHERE idCliente = $id and Month(dataPedido) = $mes and Year(dataPedido) = $ano…