Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / Large Objects
 

Long type column, not null

SQL>  CREATE TABLE myTable (   2    id          INTEGER PRIMARY KEY,   3    long_column LONG NOT NULL   4  ); Table created. SQL> SQL> drop table myTable; Table dropped.