Consider the following database schema
Student (StudentId, FullName, BDate, Address)
Course (Code, Name, Lecturer)
Enrol(StudentId, Code, Grade)
Specify the following queries in domain and tuple relational calculus
- List the name of all courses
- List the StudentId, FullName of students who lives in Hanoi
- List the StudentId of students who enrol in course ‘COMP-1101’ but not in course ‘COMP-1102’
- List the name of students who enrol in both course ‘COMP-1101’ and course ‘COMP-1102’
- List the name, lecturer of all course in which student ‘John Smith’ has enroled
- List the name of student who enrol in at least one course teach by Professor Le Quan
- List the name, address of all student who enrol in every course teach by Professor Le Quan
- List the name of the course which has no student enrolled in






