Files
lancedb/docs/src/javascript/interfaces/UpdateSqlArgs.md
Will Jones 48f46d4751 docs(node): update indexStats signature and regenerate docs (#1742)
`indexStats` still referenced UUID even though in
https://github.com/lancedb/lancedb/pull/1702 we changed it to take name
instead.
2024-10-18 10:53:28 -07:00

799 B

vectordb / Exports / UpdateSqlArgs

Interface: UpdateSqlArgs

Table of contents

Properties

Properties

valuesSql

valuesSql: Record<string, string>

A key-value map of updates. The keys are the column names, and the values are the new values to set as SQL expressions.

Defined in

index.ts:666


where

Optional where: string

A filter in the same format used by a sql WHERE clause. The filter may be empty, in which case all rows will be updated.

Defined in

index.ts:660