I’m trying to find all Users with an id greater than 200, but I’m having some trouble with the specific syntax.
User.where(:id > 200)
and
User.where("? > 200", :id)
have both failed.
Any suggestions?
I’m trying to find all Users with an id greater than 200, but I’m having some trouble with the specific syntax.
User.where(:id > 200)
and
User.where("? > 200", :id)
have both failed.
Any suggestions?