ruby - Rails数据库模型操作记录
巴扎黑
巴扎黑 2017-04-25 09:01:38
0
0
738
**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 '*')
巴扎黑
巴扎黑

全部回复(0)
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!