Why the following will not work? isn't the backslach a escape character?


SQL> insert into test3 values('good', '\'bad\'');
insert into test3 values('good', '\'bad\'')
*
ERROR at line 1:
ORA-00917: missing comma


SQL> insert into test3 values('good',''bad'');
insert into test3 values('good',''bad'')
*
ERROR at line 1:
ORA-00917: missing comma

SQL>