How can I do something like this in range?
User.find(14000..14500)
I need to choose a certain range of Users starting and finishing on spec
Use the where method:
User.where(id: 14000..14500)