Posts by Curioso • 19 points
3 posts
-
-1
votes2
answers501
viewsQ: Is it possible to run 2 queries at the same time in Mysql? Stored Procedure
I need to create a stored procedure to update the salaries of employees who earn less than 1000 and give a 10% increase. Other employees (who earn over 1000) will have 15% reduction. I did the…
-
1
votes3
answers450
viewsQ: Access modifier protected
A common class (which is not subclass) and has no inheritance, can use an attribute protected of a superclass that has a subclass? If so, this attribute will be visible (no need to use the…
-
0
votes1
answer102
viewsQ: (JAVA) Error in foreach
Why is there an error in executing the code below if I remove the break? The value of Arraylist clients is not updated every time it ends? for (Cliente cliente : clientes) { if…