Can you update all items in a domain based on the attribute value without selecting all the matching items an then updating the items one by one?
Say I have a contacts database and I want to update the region field to 'Southwest' for all items with the State attribute "TX".
in MySQL I can use "UPDATE contacts SET region='Southwest' WHERE State='TX', is there an equally simple command for SimpleDB?
I'm using the AWS SDK for PHP.