You need to sign in to do that
Don't have an account?
bhanu challenge
list<contact>con = [select Id,Name form contact where name = 'sfdc informatic new'];
for(contact ct : con){
ct.Name = 'sfdc new informatic';
}
update con;
plz correct the code......here am updating the name in contact using soql.. getting error..
list<contact>con = [select Id,Name form contact where name = 'sfdc informatic new'];
for(contact ct : con){
ct.Name = 'sfdc new informatic';
}
update con;
Ajay