Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Insert Update Delete
 

Use quote in insert statement

SQL> SQL> create table t ( x varchar2(255) ); Table created. SQL> SQL> insert into t values ( 'A''s table' ); 1 row created. SQL> SQL> drop table t; Table dropped. SQL>