Thông tin

Tác giả Quentin Cappart
Hạn chót Không có hạn chót
Giới hạn nộp bài Không có giới hạn

Đăng nhập

Compréhension des mots-clefs (gestion des valeurs manquantes)

Parmi les propositions suivantes, trouvez celle donnant une description correcte des mots-clefs (ou requêtes) suivants.


Câu hỏi 1:
select name
from instructor
where salary = null;
Câu hỏi 2:
select name
from instructor
where salary is null;
Câu hỏi 3:
select name
from instructor
where not (salary > 80000);
Câu hỏi 4:
select ID
from student
where tot_cred > 60
      or tot_cred is null;
Câu hỏi 5:
select name
from instructor
where dept_name <> 'Biology';
Câu hỏi 6:
select name
from instructor
where salary > 80000
      and dept_name = 'Biology';

On suppose qu’un instructeur spécifique a salary = NULL et dept_name = 'Biology'.

Câu hỏi 7:
select name
from instructor
where salary > 80000
      or dept_name = 'Biology';

On suppose qu’un instructeur spécifique a salary = NULL et dept_name = 'Biology'.

Câu hỏi 8:
select name
from instructor
where not (salary > 80000);

On suppose qu’un instructeur spécifique a salary = NULL.

Câu hỏi 9:
select ID
from student
where (tot_cred > 60 and dept_name = 'Biology')
      or tot_cred is null;

On suppose qu’un étudiant spécifique a tot_cred = NULL et dept_name = 'Biology'.

Câu hỏi 10:
select name
from instructor
where salary < 50000
      and dept_name = 'Physics';

On suppose qu’un instructeur spécifique a salary = NULL et dept_name = 'Chemistry'.