ओरेकल पीएल / एसक्यूएल में, एक स्ट्रिंग में एकल उद्धरण से कैसे बचा जाए? मैंने इस तरह से कोशिश की, यह काम नहीं करता है।
declare
stmt varchar2(2000);
begin
for i in 1021 .. 6020
loop
stmt := 'insert into MY_TBL (Col) values(\'ER0002\')';
dbms_output.put_line(stmt);
execute immediate stmt;
commit;
end loop;
exception
when others then
rollback;
dbms_output.put_line(sqlerrm);
end;
/