Posts by Caio Menezes • 34 points
5 posts
-
-1
votes2
answers43
viewsA: How to find the value from accumulated balances
Try running this script: SELECT Placa_Veiculo, AnoMes, SUM(KM_fim_Mes) FROM Registros GROUP BY AnoMes
-
1
votes2
answers120
viewsA: Manipulation of Arraylist
Error may be occurring due to error in variable declaration getMatricula received per parameter: Error: if (falta.getMatricula==getMmatricula && falta.dia==dia) Correction: if…
javaanswered Caio Menezes 34 -
1
votes1
answer135
viewsA: More elaborate queries in Mysql
Try this script: SELECT A.id, A.nome_aluno, RES1.responsavel_email, RES2.responsavel_email FROM aluno A INNER JOIN relacionamento R ON R.Aluno_id = A.id LEFT JOIN responsavel RES1 ON RES1.id =…
-
0
votes1
answer45
viewsA: My Javascript function is not being "viewed"
Try to put the Eventlistener for the body, outside the scope of the 'Submenu_exibe_occult' function by also changing some commands: function SubMenu_EXIBE_OCULTA(menu){ var…
-
0
votes2
answers95
viewsA: How to put multiple numbers on a var
Try the following script: var p = 0; var lines = input.split(";") for(var i = 0; i < 6; i++){ if(parseFloat(lines[i]) > 0.0){ p = p + 1; } } console.log(p + ' valores positivos');…
javascriptanswered Caio Menezes 34