Ruby on Rails 查询数据库 where 和 find 的区别

 u = User.find(1) 

returns one User

 #return a Set of users. In your case its only one user.
 u = User.where("username = ?", "percent20") 

The result type is ActiveRecord::Relation --> [User, User, User]

use e.g. first to get the first User

 #returns the first user
 u = User.where("username = ?", "percent20").first

u.class.name => "User"

====================================================

find 会直接返回查找到的记录,如果没有记录,则为nil

where 返回的是 ActiveRecord::Relation,并不是直接的结果,需要使用first,last,all等方法才能取到值

大多数情况下使用where

参考:http://m.onkey.org/active-record-query-interface

转载自:

http://stackoverflow.com/questions/5213358/difference-between-find-and-where-with-relationships

http://stackoverflow.com/questions/11161663/find-vs-find-by-vs-where

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值