gpt4 book ai didi

php - mySql 之前和之后

转载 作者:太空宇宙 更新时间:2023-11-03 11:45:52 27 4
gpt4 key购买 nike

在 MySql 中是否可以在同一语句之前和之后执行操作,我的数据变得太大,我只想显示日期为“FollowUp”之前 3 个月和之后 3 个月的数据。它是日期时间列。这是我的声明..

select * from valuations 
where Consultant = '$user'
and FollowedUp = 0 Order by FollowUp desc";

最佳答案

使用此代码

select * from valuations 
where Consultant = '$user'
AND FollowUp >= NOW() - INTERVAL 3 MONTH
AND FollowUp <= NOW() + INTERVAL 3 MONTH
and FollowedUp = 0 Order by FollowUp desc";

关于php - mySql 之前和之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38913274/

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