Prueba 2
Prueba 2
Prueba 2
Section 2
(Responder todas las preguntas de esta sección)
1. Debe mostrar los empleados cuyo salario esté en el rango entre
30000 y 50000. ¿Qué operador de comparación debería utilizar?
(1/1) Puntos
IS NULL
IN
LIKE
BETWEEN...AND... (*)
Correcto.
(1/1) Puntos
SELECT DISTINCT team_id, manager_id FROM players; (*)
SELECT team_id, manager_id DISTINCT FROM players;
SELECT * FROM players;
SELECT team_id, manager_id FROM players;
SELECT team_id, DISTINCT manager_id FROM players;
Correcto.
11. ¿Con cuál de las siguientes cláusulas WHERE no seleccionaría el
número 10?
(1/1) Puntos
WHERE hours BETWEEN 10 AND 20
WHERE hours <>10 (*)
WHERE hours IN (8,9,10)
WHERE hours <= 10
Correcto
(1/1) Puntos
WHERE email IS NOT NULL; (*)
WHERE email != NULL;
WHERE email = NULL;
WHERE email IS NULL;
Correcto.