显示连续落入特定日期范围的日期

时间:2016-12-03 14:46:54

标签: php mysql date range

enter image description here

我想显示属于特定日期范围的所有日期 喜欢

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

我已尝试从表中选择*,其中列&lt;&#39;某个日期&#39; 但它不起作用。 这些列的类型是日期类型

1 个答案:

答案 0 :(得分:0)

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

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

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

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'