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 (général)

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


Câu hỏi 1:
select name as student_name
from student;
Câu hỏi 2:
select name
from student
order by tot_cred;
Câu hỏi 3:
select name
from instructor
order by salary desc;
Câu hỏi 4:
select title
from course
order by title asc;
Câu hỏi 5:
select name
from student
order by tot_cred desc
limit 5;
Câu hỏi 6:
select name
from student
order by ID
limit 10 offset 5;
Câu hỏi 7:
select upper(name)
from instructor;
Câu hỏi 8:
select name
from student
where length(name) > 5;
Câu hỏi 9:
select name || ' (' || dept_name || ')'
from student;
Câu hỏi 10:
select lower(name) || '@univ.edu'
from instructor;