Search code examples
ruby-on-railsactiverecordrails-activerecord

Rails: Using greater than/less than with a where statement


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?


Solution

  • Try this

    User.where("id > ?", 200)