gpt4 book ai didi

MySQL:选择参加三门不同类(class)的记录

转载 作者:行者123 更新时间:2023-11-30 00:39:15 28 4
gpt4 key购买 nike

我有两个表,一个类(class)表和一个出勤表。类(class)表保存所提供类(class)的记录出勤表保存参加类(class)的学生姓名和电子邮件以及参加日期的记录。

我需要选择所有出勤记录,其中学生恰好参加了所提供的 3 门类(class)中的 2 门,并输出完成 3 门类(class)所需的第 3 门无人值守类(class)。

类(class)表结构:

id : int
course_title : varchar
course_level : int

考勤表结构:

id : int
course_id : int
student_name : varchar
student_email : varchar
attended_date : date

最佳答案

尝试此解决方案(如发现 here )

SELECT t1.email, course.course_title
FROM (SELECT email
FROM attendance
JOIN course
ON attendance.course_id = course.id
AND course.course_level = 1
GROUP BY email
HAVING COUNT(DISTINCT attendance.course_id) = 2) AS t1
CROSS JOIN course
LEFT JOIN attendance
ON attendance.course_id = course.id
AND attendance.email = t1.email
WHERE course.course_level =1
AND attendance.id IS NULL;

关于MySQL:选择参加三门不同类(class)的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21918780/

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