מידע

יוצרים Quentin Cappart
מועד הגשה אין מועד הגשה
מגבלת הגשות אין הגבלה

כניסה

Lecture de requêtes SQL (une seule relation)

Traduisez le plus précisément possible les requêtes SQL suivantes. N'hésitez pas à exécuter ces requêtes dans SQLite pour vérifier votre compréhension.


שאלה 1:
select name
from instructor;
שאלה 2:
select distinct building
from department;
שאלה 3:
select all title
from course;
שאלה 4:
select *
from student;
שאלה 5:
select tot_cred
from student
שאלה 6:
select *
from student
where tot_cred > 6;
שאלה 7:
select course_id
from course
where dept_name = "Biology" and credits < 3;
שאלה 8:
select 0
from department;
שאלה 9:
select time_slot_id
from time_slot
where day = 'M' and start_hr between 8 and 12;
שאלה 10:
select name
from instructor
where salary = null;