gpt4 book ai didi

mysql - 从基于 MySQL 的表获取自定义结果

转载 作者:行者123 更新时间:2023-11-30 00:20:22 27 4
gpt4 key购买 nike

enter image description here我很困惑如何从给定表(附加快照)中检索以下结果

我想要所有类(class)(Disnict)、部门、学校、最小(学期)、最大(学期)表格科目

需要的结果:

补贴 |学校 |部门 |类(class) |分钟学期 |最大学期 |

最佳答案

 SELECT 
t.subid ,
t.school,
t.dept,
t.course,
min(t1.semester),
max(t1.semester)
FROM table t, table t1
WHERE
t1.school = t.school
AND t1.dept = t.dept
AND t1.course = t.subid

GROUP BY t.subid ,t.school, t.dept, t.course

关于mysql - 从基于 MySQL 的表获取自定义结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23295485/

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