ef self.find_all_by_tag_type(tag_type) find(:all,:conditions=>['tag_type =?',tag_type ] , :distinct=>tag_type) end 比如这个方法我要查询除去重复的 tag_type 这个字段的 所有数据 那地方那个条件该怎么写啊?
self.group(:tage_type)
find(:all, :select => "DISTINCT tag_type")
#2 楼 @alvin2ye 谢谢
#1 楼 @lb563 谢谢