UPDATE table_name
SET po_number=replace(upper(po_number),'PO','');
should do what you want. Alternatively :
UPDATE table_name
SET po_number=substr(po_number,3);
Test the things first.
|
Results 1 to 5 of 5
Thread: update and substr commandThreaded View
|
Click Here to Expand Forum to Full Width |