现有如下数据:
create table TAB
(
testv VARCHAR2(200)
);
insert into TAB (testv)
values ('01 人民币(CNY),100,1000,10000;02,港元(HKD),200,2000,20000;01 美元(USD),100,1000,10000');
commit;
如 ...
↧