CREATE TABLE cosvec-target
The table cosvec-target
is required for an INSERT
statement, and contains:
- an ID unique identifier
- STRING and VECTOR data type columns
Before you begin
CREATE TABLE statement
CREATE TABLE cosvec-target (
_id id,
description string,
cosvec-col vector(3)
);
Next step