gpt4 book ai didi

php - 具有多个 where 语句的多个选择查询

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

我目前有这个查询:

SELECT s.firstName, s.lastName, sum(correct) AS score 
FROM student s
JOIN test t ON s.id = t.studentid
WHERE t.testType = 1 GROUP BY lastName, firstName

但我也希望它显示

WHERE t.testType = 2

还有测试类型 3 和 4。

我想将它们全部放在同一行中。这可能吗?

最佳答案

您可以使用in样式从多个不同的值中进行选择

SELECT s.firstName, s.lastName, sum(correct) AS score 
FROM student s
JOIN test t ON s.id = t.studentid
WHERE t.testType in ( 1,2,3,4 )
GROUP BY lastName, firstName

关于php - 具有多个 where 语句的多个选择查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35565778/

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