这个错误到底是什么?我正在运行这样的标准查询:
time_range = (1.month.ago.beginning_of_month..1.month.ago.end_of_month)
Feed.find(:all, :conditions => ['created_at = ? AND id not in (?)', time_range, [1,2,3]]).count
有什么想法吗?感谢
答案 0 :(得分:20)
我遇到了这个问题,解决方法是添加“to_date”,以便迭代几天,如下所示:
time_range = (1.month.ago.beginning_of_month.to_date..1.month.ago.end_of_month.to_date)
答案 1 :(得分:4)
我认为您的问题是您正在执行created_at = ?, time_range
,而time_range不是特定值,而a =需要特定值。无法准确解释该错误的原因,但可以为您提供解决方案。
这样做,我尝试了它,效果很好
1.9.3-p125 :014 > time_range = (1.month.ago.beginning_of_month..1.month.ago.end_of_month)
=> Sun, 01 Apr 2012 00:00:00 UTC +00:00..Mon, 30 Apr 2012 23:59:59 UTC +00:00
1.9.3-p125 :015 > Post.where(:created_at => time_range).where('id not in (?)', [1,2,3]).count
(0.3ms) SELECT COUNT(*) FROM "posts" WHERE ("posts"."created_at" BETWEEN '2012-04-01 00:00:00.000000' AND '2012-04-30 23:59:59.999999') AND (id not in (1,2,3))
=> 0
更新
与问题没有直接关系,但是您应该将这些条件放在具有语义含义的范围内,这样您就可以Feed.from_last_month
和类似Feed.not_with_ids([1,2,3])
对于您的查询,您可以
Feed.from_month.not_with_ids([1,2,3]).count
有关警告的说明请查看下面的@echristopherson评论