作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的数据库中有两列和如下数据
StartDate Enddate
2015-10-01 2015-10-30
2015-10-15 2015-11-15
2015-09-15 2015-10-15
如果我搜索 startdat : 2015-10-16 Enddate : 2015-10-20 而不是想要以上所有结果,请帮助我
我的查询如下
Select * from campaign as c LEFT JOIN campaign_team as t ON c.campaign_id=t.campaign_id where t.user_id
='6' and
(campaign_sdate BETWEEN '2015-10-16' AND '2015-10-20' or campaign_edate BETWEEN '2015-10-16' AND '2015-10-20'
or ( campaign_sdate <= 2015-10-16 and campaign_edate >= 2015-10-20 ) );
提前致谢
最佳答案
你写了相反的条件
or ( campaign_sdate >= 2015-10-16 and campaign_edate <= 2015-10-20 ) );
当你使用它时删除 BETWEEN
。
最终查询,
Select * from campaign as c LEFT JOIN campaign_team as t ON c.campaign_id=t.campaign_id where t.user_id
='6' or ( campaign_sdate >= 2015-10-16 and campaign_edate <= 2015-10-20 ) );
关于php - 检查在 mysql startdate enddate 列之间找到的日期 renge,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33407462/
在我的数据库中有两列和如下数据 StartDate Enddate 2015-10-01 2015-10-30 2015-10-15 2015-11-15
我是一名优秀的程序员,十分优秀!