Create the table

The following example shows how to create a table called reports by using the CREATE TABLE statement:
CREATE TABLE reports
(
    doc_no INTEGER,
    author VARCHAR(60),
    title  CHAR(255),
    abstract CLOB
);

The text data is stored in the CLOB column called abstract.