Skip to main content Link Menu Expand (external link) Document Search Copy Copied

INSERT data to VECTOR column

INSERT data to string and vector columns in the cosvec-target table

Before you begin

INSERT statement

INSERT INTO cosvec-target(
  _id,
  description,
  cosvec-col
)
  VALUES (
    0,
    'Three vector values',
    [0.9059894547233159, 0.6554107219473952, 0.11411471973104703]
  );

Arguments

Argument Description
INSERT INTO Insert data to the cosvec-target table <column-list>
[values] Insert three decimal values to cosvec-col

Next step