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

How to delete a specific field value from the object using SOQL
I tried deleting a record from the object by following below steps.
Queried in Dev console using Record Id , then using delete row.
Like this is there any way to delete the specific field value from the DEV console.
Please share your views.
Thank you
Paluri
Queried in Dev console using Record Id , then using delete row.
Like this is there any way to delete the specific field value from the DEV console.
Please share your views.
Thank you
Paluri
list<account> accounts = [select id,somefield__c from account where id='someid'];
for(account acc:accounts ){
acc.somefield__c = null;
}
update accounts;
Mark as best answer if this solves ur question