mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-04 10:52:56 +00:00
* Sets `"useCodeBlocks": true` * Adds a post-processing script `nodejs/typedoc_post_process.js` that puts the parameter description on the same line as the parameter name, like it is in our Python docs. This makes the text hierarchy clearer in those sections and also makes the sections shorter.
31 lines
433 B
Markdown
31 lines
433 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / AddColumnsSql
|
|
|
|
# Interface: AddColumnsSql
|
|
|
|
A definition of a new column to add to a table.
|
|
|
|
## Properties
|
|
|
|
### name
|
|
|
|
```ts
|
|
name: string;
|
|
```
|
|
|
|
The name of the new column.
|
|
|
|
***
|
|
|
|
### valueSql
|
|
|
|
```ts
|
|
valueSql: string;
|
|
```
|
|
|
|
The values to populate the new column with, as a SQL expression.
|
|
The expression can reference other columns in the table.
|