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/