You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#3.31select ID,name
from instructor
where ID not in (
select ID
from teaches
where (course_id,sec_id,semester,year) in (
select course_id,sec_id,semester,year
from takes
where grade like'A%'));
#3.32selectinstructor.ID,name
from (instructor natural join teaches) join takes
using (course_id,sec_id,semester,year)
where grade is not nulland not exists (select*from teaches join takes
using (course_id,sec_id,semester,year)
whereteaches.ID=instructor.IDand grade like'A%')
The text was updated successfully, but these errors were encountered:
My answers are as follows:
The text was updated successfully, but these errors were encountered: