mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-08 04:42:57 +00:00
* improve the docstring for NodeJS connect functions and `ConnectOptions` parameters. * Simplify `npm run build` steps.
37 lines
797 B
Markdown
37 lines
797 B
Markdown
[vectordb](../README.md) / [Exports](../modules.md) / UpdateSqlArgs
|
|
|
|
# Interface: UpdateSqlArgs
|
|
|
|
## Table of contents
|
|
|
|
### Properties
|
|
|
|
- [valuesSql](UpdateSqlArgs.md#valuessql)
|
|
- [where](UpdateSqlArgs.md#where)
|
|
|
|
## 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:468](https://github.com/lancedb/lancedb/blob/c89d5e6/node/src/index.ts#L468)
|
|
|
|
___
|
|
|
|
### 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:462](https://github.com/lancedb/lancedb/blob/c89d5e6/node/src/index.ts#L462)
|