帮助在rails中构建复杂的数据库查询

时间:2011-06-07 04:11:49

标签: sql ruby-on-rails ruby-on-rails-3 activerecord

我希望你们中的一些sql大师可以帮助我在rails中构建一个相对复杂的(对我而言)查询。我有两个相关的模型,一个Story模型和一个Post模型。

class Story < ActiveRecord::Base

attr_accessible :title

  belongs_to    :user
  has_many  :posts,
        :dependent  =>  :nullify


class Post < ActiveRecord::Base

  attr_accessible :contents

  belongs_to    :story, :touch => true
  belongs_to    :user, :touch => true

每个故事实例都充当多个帖子实例的包装器。我希望能够在数据库中搜索具有在特定时间范围内创建的帖子的故事,如果有一个故事在给定的时间范围内创建了帖子,则返回所有故事属性以及故事最近创建的帖子(也是所有属性)在时间范围内创建。我可以获取故事属性和post_id,但我无法弄清楚如何获得其余的帖子属性。

以下是我在Post.rb中的内容:

  scope :within_user_preferred_date_range, lambda { |user| 
    where("posts.created_at BETWEEN ? AND ?", 
        (Time.now.midnight - user.preferences[:start_story_date_offset_in_days].days), 
        (Time.now - user.preferences[:end_story_date_offset_in_days].days )) } 

  ####################################

  def self.close_timely_posts(user) 
    Post.includes(:story).within_user_preferred_date_range(user).select("DISTINCT(story_id)")   
  end

这会生成以下sql查询,这显然不是我需要的:

←[1m←[35mPost Load (0.0ms)←[0m  SELECT DISTINCT(story_id) FROM `posts` WHERE 
(posts.created_at BETWEEN '2011-06-03 07:00:00' AND
'2011-06-06 19:34:40') ORDER BY posts.created_at DESC
  ←[1m←[36mStory Load (0.0ms)←[0m  ←[1mSELECT `stories`.* FROM `stories` WHERE (`stories`.`id` IN (70,57,53,55,16,54,51,56,52,60,59,58))←[0m

非常感谢您对此查询提供的任何帮助!

1 个答案:

答案 0 :(得分:0)

尝试将代码修改为:

  def self.close_timely_posts(user) 
    Post.includes(:story).within_user_preferred_date_range(user).select("DISTINCT(story_id), posts.*")   
  end