Sql присоединяется к таблице вопрос?
Программирование на языке SQL
Присоединяется Вопрос
Give the name of the course, the number of credit hours, the name of the instructor, the time and day of the course and the roomNo for all classes taught in room 1150.
Используя предоставленную базу данных, напишите и выполните инструкции SELECT, чтобы получить следующую информацию:
Курсы - https://i.stack.imgur.com/QZdQx.jpg
Инструктора - https://i.stack.imgur.com/7ggnk.jpg
Разделы - https://i.stack.imgur.com/6p0LR.jpg
Студенты - https://i.stack.imgur.com/sBmX1.jpg
StudentSchedule - https://i.stack.imgur.com/cTbrl.jpg
StudentSchedule Часть 2 - https://imgur.com/a/gxrm8Dy
Что я уже пробовал:
SELECT Courses.CourseName, Courses.CreditHours, Instructors.FirstName, Instructors.LastName, Sections.TimeDays, Sections.RoomNo FROM Courses, Sections, Instructors WHERE Courses.CourseID = Sections.CourseID AND Sections.Instructor = Instructors.ID AND Sections.RoomNo='1150';
Результат: Imgur: магия интернета[^]
Как мне это исправить?