php - 连续显示某个日期范围内的日期-LMLPHP

我想显示属于某个日期范围的所有日期
喜欢

select * from table where column names <'certain date'


我尝试从表中选择* *列但这不起作用。
这些列的类型是日期类型

最佳答案

为什么不能使用BETWEEN运算符指定日期范围,例如

where column_names between 'certain date' and 'certain other date'


(OR)使用>=<=运算符

where column_names >= 'certain date'
and column_names <= 'certain other date'


对于多列,您必须使用and / or条件将它们全部包括在内

where column_name1 between 'certain date' and 'certain other date'
and   column_name2 between 'certain date' and 'certain other date'

关于php - 连续显示某个日期范围内的日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40949001/

10-11 23:26