1. IIf we had a student with the name “John Doe”, why the following SQL code is not returning all of the John’s courses?
Select *
From [Course] course with (nolock)
Join [Student] student with (nolock)
On course.[Course_ID] = student.[Student_ID]
Where student.[Name] = 'John Doe'
Attachment: sql.rar