5

我的 Rails 3 应用程序中有以下代码:

  scope :active, lambda {
    where("starts_at <= ? AND ends_at >= ?", Time.now.utc, Time.now.utc)
  }
  scope :since, lambda { |hide_time|
    where("updated_at > ? OR starts_at > ?", hide_time.utc, hide_time.utc) if hide_time
  }

  def self.display(hide_time)
    active.since(hide_time)
  end

但是,无论年份是否与当前年份匹配,我都想返回结果。只要日期和月份匹配就可以了。这可能吗?

starts_atends_atdatetime格式化。因此,即使我没有在表格中设置一年,它们也会自动包含一年:

<%= f.datetime_select :starts_at, :order => [:day, :month], :discard_year => true %>

任何指针将不胜感激。

4

1 回答 1

2

正如 Old Pro 在评论中指出的那样,这确实对闰年造成了问题。您可能希望将每年的每一天拆分为 MONTH(x) 和 DAYOFMONTH(x)。


您可以使用 dayofyear 函数 https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_dayofyear

scope :active, lambda {
    where("dayofyear(starts_at) <= dayofyear(?) AND 
      dayofyear(ends_at) >= dayofyear(?)", Time.now.utc, Time.now.utc)
  }
  scope :since, lambda { |hide_time|
    where("dayofyear(updated_at) > dayofyear(?) OR 
      dayofyear(starts_at) > dayofyear(?)", hide_time.utc, hide_time.utc) if hide_time
  }

mssql中是

日期部分(年份,日期)

postgres中是

提取(从日期开始)

sqlite3它是

strftime("%j",日期)

于 2013-05-06T23:26:16.390 回答