This is table
CREATE TABLE test(
id char(5) NOT NULL,name nchar(20) NULL, Mphone int NULL,Tel int NULL );
insert into test values('e001','david',5456789,5456422);
update test set MPhone =012345
where id='e001';
i want to get result as updated column Mphone or value 012345