Hello All,
I have got a table like below :-
Name (varchar2) Code(varchar2) Details
ABC 123_o kkkk
PQR 456_U RRR
I just put only two rows where as there will be 1000 rows.
I want the table to be like below after update
Name (varchar2) Code(varchar2) Details
100_Name 100 kkkk
101_Name 101 RRR
Please note that i just want to update the name which is based on the code value and code value should be in the ascending order, where as the code and Name orginal field values wont have any link with the the values with which it is going to be get updated.
Please send me the update query for the above issue.
Thanking you in advance.
Regards,
Dhanya
I have got a table like below :-
Name (varchar2) Code(varchar2) Details
ABC 123_o kkkk
PQR 456_U RRR
I just put only two rows where as there will be 1000 rows.
I want the table to be like below after update
Name (varchar2) Code(varchar2) Details
100_Name 100 kkkk
101_Name 101 RRR
Please note that i just want to update the name which is based on the code value and code value should be in the ascending order, where as the code and Name orginal field values wont have any link with the the values with which it is going to be get updated.
Please send me the update query for the above issue.
Thanking you in advance.
Regards,
Dhanya
Comment