📝 Question
#1045
This Query can be replaced by which one of the following? SELECT name, course_id FROM instructor, teaches WHERE instructor_ID= teaches_ID;
✓
Correct Answer
B. Select name, course_id from instructor natural join teaches;
💡
Explanation
Join clause joins two tables by matching the common column.
⌨️ Press
A
B
C
D
to select