gpt4 book ai didi

mysql - mysql 子查询的问题

转载 作者:行者123 更新时间:2023-11-29 12:22:24 25 4
gpt4 key购买 nike

我对如何进行 SQL 查询感到困惑,该查询将显示正在学习特定讲师教授的科目的学生详细信息。

有 5 个表是我的数据库。

主题(subjectCodesubjectNamecreditHourstudyMode)

学生(stdID,stdName`)

讲师(lecID,lecName`)

讲师主题(lec_subIDlec_userIDsubjectID)

学生主题(std_subIDstudent_userIDsubjectCode)

最佳答案

您需要应用 joinWHERE 子句来获取所需的数据。

SELECT DISTINCT 
Sturent.stdName as StudentName,
Subject.subjectName as SubjectName,
Lecturer.lecName as LecturerName,
Subject.creditHour,
Subject.studyMode
FROM
Student JOIN Student-subject
ON student.stdID= Student-subject.student_userID
JOIN Subject
ON Student-subject.subjectCode = subject.subjectCode
JOIN Lecturer-subject
ON Lecturer-subject.subjectID = subject.subjectCode
JOIN Lecturer
ON Lecturer-subject.lec_userID = lectrer.lecID
WHERE
Lecturer.lecName = 'some lecturer name'

关于mysql - mysql 子查询的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28826604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com