如何查询表col以获取多个值

时间:2013-07-21 02:06:38

标签: sql ruby-on-rails ruby activerecord

我做了一件可怕的事......

我有一张包含帐户余额的表格。它具有account_id,amount和month_end日期的属性。我想查询该表以了解过去12个月的余额。但是要做到这一点还有比这更好的方法。

scope :recent_balances, lambda { { :conditions => 
  ["month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ? OR month_end = ?", 
  last_month_end.to_s, 
  (last_month_end-1.month).end_of_month.to_s,
  (last_month_end-2.month).end_of_month.to_s,
  (last_month_end-3.month).end_of_month.to_s,
  (last_month_end-4.month).end_of_month.to_s,
  (last_month_end-5.month).end_of_month.to_s,
  (last_month_end-6.month).end_of_month.to_s,
  (last_month_end-7.month).end_of_month.to_s,
  (last_month_end-8.month).end_of_month.to_s,
  (last_month_end-9.month).end_of_month.to_s,
  (last_month_end-10.month).end_of_month.to_s,
  (last_month_end-11.month).end_of_month.to_s ] } }

private

def self.last_month_end
  last_month_end ||= (Date.today - 1.month).end_of_month
end

我的问题是:

  1. 执行此查询的智能方法是什么? (这不是我刚想出来的。)
  2. 如何修改此查询以使其更灵活?我希望能够在特定的月份内传递查询(例如查询六个月的余额或24个月的余额)

1 个答案:

答案 0 :(得分:1)

months = (1..11).map { |m| last_month_end.advance(months: 0 - m) }

where("month_end IN (?)", months)

或类似的东西。这将是一种更具可读性和可维护性的方式,可以完成您上面所做的工作。正如其他人所说,您可以检查日期是否在SQL中的开始日期和结束日期之间。

where("date >= ? AND date <= ?", start_date, end_date)

或(更好)

where("date BETWEEN ? AND ?", start_date, end_date)