Insert Update Delete Oracle PLSQL Tutorial

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>