You need to sign in to do that
Don't have an account?

Dml statements
I have one CustomObject(Mobile) i want to update the Amount record,but amount all records 5000 .I want to change one Amount record is =10000 How to change the record?
You need to sign in to do that
Don't have an account?
I hope the Amount is a custom field in Mobile SObject. If all your records are having 5000 as a for Amount field and to update the record with Amount field value 10000. You can write a SOQL and try to execute the below code in Anonymous block.
mob = select Amount__c from Mobile__c where Amount__c=:10000;
mob.Amount__c=12000;
update mob;
Regards,
Deepthi