I have a database with a lot of pets. I am looking to update the 'name' attribute by changing it's case. I have tried:
Pet.update_all(:name => Pet.name.upcase)
Pet.update_all(:name => name.upcase)
Pet.update_all(:name => :name.upcase)
Pet.update_all(:name => "#{name.upcase}")
but all of those return:
- "PETS" for every name
- "NAME" for every name
- "NAME" for every name
- invalid syntax
what am I missing here?
As long as you are refering to an own attribute inside of the update attribute you won't be able to do this without iterating. An option coul be:
Another option: