我正在尝试查找 id 大于 200 的所有用户,但我在使用特定语法时遇到了一些问题。
User.where(:id > 200)
和
User.where("? > 200", :id)
都失败了。
有什么建议么?
尝试这个
User.where("id > ?", 200)