你如何在mysql或rails中做到这一点

时间:2011-11-03 07:06:58

标签: mysql ruby-on-rails ruby activerecord searchlogic

假设您有一个帖子表和一个标签表,并且两者都通过post_tags表相关。

所以

帖子有id / subject / body栏

标签有id / name

post_tags有id / post_id / tag_id

在rails术语中,我有一个Post Model,它通过AssetTags有许多标签。

我正在尝试查询包含2个特定标记的帖子。 所以如果有一个rails标签和一个mysql标签,我想要一个返回只有这两个标签的帖子的查询。

有意义吗?

使用activerecord(我正在使用搜索逻辑)或mysql的任何方法吗?

4 个答案:

答案 0 :(得分:1)

此SQL返回包含两个标记的帖子。

select 
  p.* 
from 
  posts p
  ,asset_tags atg1
  ,asset_tags atg2
  ,tags t1
  ,tags t2
where
  p.id = atg1.post_id
and t1.id = atg1.tag_id
and t1.tag = 'MySQL' 
and p.id = atg2.post_id
and t2.id = atg2.tag_id
and t2.tag = 'Rails'
;

至于通过Active记录进行,另一种方法是查询每个标记然后&结果数组得到两者的交集。

答案 1 :(得分:0)

对于mysql,当然可以获取数据

 SELECT p.*
   FROM posts p 
   JOIN post_tags pt
     ON p.post_id = pt.post_id
  WHERE pt.tag_id in (tagId1, tagId2)

我没有使用Rails ActiveRecord,但我想它会像

那样
 get('posts');
 join('post_tags','post_id');
 where_in('tag_id', array(tagId1, tagId2);
 execute();

答案 2 :(得分:0)

鉴于这些模型:

def Post
  has_many :asset_tags
  has_many :tags, :through => :asset_tags
end

def AssetTag
  has_one :post
  has_one :tag
end

def Tag
  has_many :asset_tags
  has_many :posts, :through => :asset_tags
end

你可以这样做:

Post.joins(:asset_tags => :tag).where(
  "tags.name in ('?', '?')", 'foo', 'bar' )

现在,这实际上并没有对has_many :through关联做任何事情 - 我不确定是否提供了一个利用它的更加流畅的api。

答案 3 :(得分:0)

John Bachir的回答可以修改为......

Post.joins(:asset_tags => :tag)
    .where("tags.name in ('?')", 'foo')
    .where("tags.name in ('?')", 'bar')