Inserting data into a table
To insert data into a table you use a familiar ANSI SQL statement. A simple example shows you have to accomplish this basic task.
INSERT INTO TABLE tablename
[PARTITION (partcol1=val1, partcol2=val2 ...)] VALUES values_row [,
values_row...]
where
values_row
is (value [, value])
.
A value can be NULL or any SQL literal.