Consider the following SQL query that seeks to find a list of titles of all courses taught

Question:

Consider the following SQL query that seeks to find a list of titles of all courses taught in Spring 2017 along with the name of the instructor.

select name, title from instructor natural join teaches natural join section natural join course where semester = 'Spring' and year = 2017 

What is wrong with this query?

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Database System Concepts

ISBN: 9780078022159

7th Edition

Authors: Abraham Silberschatz, Henry F. Korth, S. Sudarshan

Question Posted: