gpt4 book ai didi

mysql - 如何修复查询间隔中的语法错误?

转载 作者:行者123 更新时间:2023-11-29 22:44:06 24 4
gpt4 key购买 nike

select *, 
(select max(h.date)
from hour_cards as h
where h.subordinate_id = hour_cards.subordinate_id
and h.date > hour_cards.date and
h.date - hour_cards.date <= INTERVAL 1 minute) as wrong_entry
from hour_cards

我正在尝试进行一个查询,如果每个 worker 在进入或退出工作时读卡两次或更多次,该查询将提供每个 worker 的所有条目,但上述查询始终给我错误。

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') as wrong_entryfrom hour_cards

最佳答案

只能在 date calculation function 中使用间隔.

您的查询必须类似于:

select *, 
(select max(h.date)
from hour_cards as h
where h.subordinate_id = hour_cards.subordinate_id
and h.date > hour_cards.date and
DATE_ADD(h.date, INTERVAL 1 minute) <= hour_cards.date as wrong_entry
from hour_cards

关于mysql - 如何修复查询间隔中的语法错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29204172/

24 4 0
文章推荐: javascript - 侧边栏导航不适用于 Angular 和物化 css
文章推荐: android - EditText Int number 验证 ID 号 0-1000
文章推荐: php - 分解数据库值,然后通过选择