Rails: Using greater than/less than with a where statement
activerecord, rails-activerecord, ruby-on-rails
Solution
Try this
User.where("id > ?", 200)
Problem
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?