Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Does this query: pi _ ( tutor . name ) ( ( sigma _ ( ( tutor . role = ^ ' tutor
Does this query:
pi tutornamesigma tutorroletutorTEACHrho uidstaffname STAFFsigma courselevelconvenername'Graham' COURSETEACH
Answer this question:
Consider the following relational database schema S representing a simplified account of ANU teaching arrangements: staff uid name
primary key: uid
course ccode name, level
primary key: ccode
teach uid ccode, sem, year, role primary key: uid ccode, sem, year foreign key: uid staffuid foreign key: ccode courseccode
and the following SQL query:
list the names of all tutors in level courses convened by Graham select tutor.name
from staff join teach on staffuid teach.uid as tutor,
staff join teach on staffuid teach.uid as convener,
course
where tutor.ccode convener.ccode
and tutor.sem convener.sem
and tutor.year convener.year and convener.role 'convener' and tutor.role 'tutor'
and convener.ccode course.ccode and convener.name 'Graham'
and course.level ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started