查询从当前日期返回日期

时间:2015-09-25 07:49:24

标签: mysql

我有一张表,其中有两列。我希望看到从当前日期到230天后插入的所有id或count id行。

为此,我使用了下面的查询,但它没有给出结果它显示0而表

中有这么多行
select count(b.id) from bill b 
 where date(b.date) between (curdate()) and (DATE_SUB(CURDATE(),INTERVAL 230 DAY))

1 个答案:

答案 0 :(得分:0)

尝试替换beteen中的顺序(较小的第一个)

between (DATE_SUB(CURDATE(),INTERVAL 230 DAY)) and (curdate())