我尝试在2行提出请求。 我有一个PHP代码来进行规划。我在这样的桌子上记录了我的人员的责任:
很容易
select count(*) from table where idPerso = x and h06==1 and h07==1 ...
但我不知道
count(*) from table where h23==1 and h00==1 next day ...
任何想法?
非常感谢
答案 0 :(得分:0)
count(*) from ... where ... and `Date` = DATE_ADD(`Date`, INTERVAL 1 DAY)
这应该可以解决问题。
参见MySQL手册"日期&时间功能"了解更多详情---> https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html#function_date-add