gpt4 book ai didi

php - 查询以检查同一表中的 row1 = row2 是否

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

course      |      section      |     type
comart2 : bsit201 : lec
comart2 : bsit202 : lec
copro2 : bsit201 : lec
copro2 : bsit201 : lab

我有两个 comart2 但不同的部分。我想检查是否有相同的时间表类(class)但不同的部分或相同的时间表类(class)和相同的部分,如copro2,因为它有讲座和实验室。

这是我的查询:

SELECT * FROM tblschedule WHERE schedulecourse =
'".$_SESSION['schedulecourse']."' AND schedulesection =
'".$_SESSION['schedulesection']."' AND schedulesection != (SELECT
schedulesection FROM tblschedule WHERE schedulecourse =
'".$_SESSION['schedulecourse']."' limit 1,1);

但这只是检查两行。如果我有 5 个 comart2,有五个不同的部分怎么办?如何检查?

最佳答案

SELECT course, section, type  
FROM table
GROUP BY title, section,type
HAVING count(*) > 1

关于php - 查询以检查同一表中的 row1 = row2 是否,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32322986/

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