Posts by Rodrigo Suelli • 25 points
4 posts
-
0
votes1
answer77
viewsQ: What is the best way to make an if-lse?
The two examples below are equivalent, but what represents the best way to make a if-else? My goal is to display "num é igual a 0" if num is equal to 0, and "num é diferente de 0" case num has any…
-
-2
votes1
answer176
viewsQ: Use onmouseover to change the color of created Ivs with createelement
the goal of this code is that whenever the user clicks the button, appears on the screen, a div in the form of a square, and when he hovers over one of the created squares, his background-color is…
javascriptasked Rodrigo Suelli 25 -
1
votes1
answer29
viewsA: Problems to make a SELECT
Problem Solved. select DEPT.dcodigo, DEPT.dnome from EMPR, DEPT where EMPR.dept=DEPT.dcodigo and EMPR.cargo='gerente';
-
0
votes1
answer29
viewsQ: Problems to make a SELECT
I’m having a hard time getting a SELECT. I need to list all the information(dcodigo, dnome) of the department (DEPT) that have a manager(position). My code is like this: create database bd_emp; use…