CREATE TABLE for BULK INSERT using tuple
The tuple-set-target
table is intended for a BULK INSERT
statement and includes:
- a STRING unique identifier
- TIMESTAMP, IDSET, STRINGSET, IDSETQ and STRINGSETQ column data types
Before you begin
- CREATE TABLE examples
- CREATE TABLE statement
- IDSET data type
- IDSETQ data type
- STRING
- STRINGSET data type
- STRINGSETQ data type
- TIMESTAMP data type
CREATE TABLE
create table tuple-set-target (
_id string,
time_col timestamp,
stringset_col stringset,
ideset_col idset,
stringsetq_col stringsetq timequantum 'YMD',
idesetq_col idsetq timequantum 'YMD');