我想显示属于特定日期范围的所有日期 喜欢
select * from table where column names <'certain date'
我已尝试从表中选择*,其中列&lt;&#39;某个日期&#39; 但它不起作用。 这些列的类型是日期类型
答案 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'