首页  >  问答  >  正文

ruby - Rails数据库模型操作记录

**count**:
      Person.count(:conditions => "age > 26")
      Person.count(:conditions => "age > 26 AND job.salary > 60000", :include => :job) # because of the named association, it finds the DISTINCT count using LEFT OUTER JOIN.
      Person.count(:conditions => "age > 26 AND job.salary > 60000", :joins => "LEFT JOIN jobs on jobs.person_id = person.id") # finds the number of rows matching the conditions and joins.
      Person.count('id', :conditions => "age > 26") # Performs a COUNT(id)
      Person.count(:all, :conditions => "age > 26") # Performs a COUNT(*) (:all is an alias for '*')
巴扎黑巴扎黑2709 天前735

全部回复(0)我来回复

暂无回复
  • 取消回复