数据库
首页 > 数据库> > mysql-如何结合SQL查询的位置和顺序

mysql-如何结合SQL查询的位置和顺序

作者:互联网

我有通过比赛联系在一起的项目和拨款.补助金有有效期限.我想按赠款到期日期对项目的匹配项进行排序.

这是基于有效期的匹配项:

def self.expires_date_between(from, to)
  Match.where(:grant_id => Grant.where("expires_at  >= ? and expires_at <= ?", from, to))
end

这显示了基于特定日期范围的匹配.

def current_matches
  range = user.current_period_range
  matches.expires_date_between(range[0], range[1])
end

这样可以很好地显示基于特定时间段的赠款,但是赠款不是按日期顺序显示(expires_at).似乎是按赠款的创建日期对赠款进行了排序.如何更改查询,以便按有效期顺序列出赠款?

我试过了:

def self.expires_date_between(from, to)
  Match.where(:grant_id => Grant.where("expires_at  >= ? and expires_at <= ?", from, to).order('expires_at asc'))
end

这不会引发错误,但也不会更改授予的顺序.有任何想法吗?

解决方法:

假设您已经在模型中定义了关联,那么这应该可以工作(但尚未经过测试):

Match
  .joins(:grant)
  .merge(Grant.where("expires_at  >= ? and expires_at <= ?", from, to))
  .order('expires_at asc')

标签:postgresql,ruby-on-rails-4,ruby,mysql
来源: https://codeday.me/bug/20191118/2031757.html