gpt4 book ai didi

php - MySql 排除具有特定 ID 的结果?

转载 作者:行者123 更新时间:2023-12-01 00:38:50 27 4
gpt4 key购买 nike

这是我的SQL语句

            SELECT * FROM schedule
WHERE teacher_id = '$teacher_id'
AND event_id <> '$event_id'
AND seconds_start = '$start_time'
OR (seconds_start < '$start_time' AND seconds_end > '$start_time')
OR (seconds_start < '$end_time' AND seconds_end >= '$end_time')

如您所见,我想排除任何具有特定 ID 的结果,但这似乎不起作用,因为...

enter image description here

这不应该像预期的那样表现吗?

最佳答案

你显然不明白Operator Precedence

您很少可以在同一指令中混合使用 ANDOR 运算符,而无需使用括号指定它们的范围。

在括号后正确缩进您的代码也有助于理解您的查询:

    SELECT * FROM schedule
WHERE teacher_id = '$teacher_id'
AND event_id <> '$event_id'
AND (
seconds_start = '$start_time'
OR (seconds_start < '$start_time' AND seconds_end > '$start_time')
OR (seconds_start < '$end_time' AND seconds_end >= '$end_time')
)

关于php - MySql 排除具有特定 ID 的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39407742/

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