gpt4 book ai didi

mysql - 在子查询中使用 subdate 和 max(date)

转载 作者:行者123 更新时间:2023-11-28 23:48:13 25 4
gpt4 key购买 nike

我尝试了这个查询并得到了错误。子查询单独返回所需的结果。

Select * 
from usi
where present_date = select subdate(MAX(present_date), 1) AS PreviousDate from usi

我做错了什么?

最佳答案

子查询需要括号:

Select * 
from usi
where present_date = (select subdate(MAX(present_date), 1) AS PreviousDate from usi);

注意:subdate()——虽然完全有效——看起来很奇怪。我更习惯于看到 date_sub()- interval 1 day

关于mysql - 在子查询中使用 subdate 和 max(date),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33089513/

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