SQL Select: Database Systems Lecture 7 Natasha Alechina
SQL Select: Database Systems Lecture 7 Natasha Alechina
Student.ID Grade.ID
SELECT from Multiple Tables
SELECT ... FROM Student, Grade
WHERE (Student.ID = Grade.ID) AND (Mark >= 40)