cURL
curl --request POST \ --url https://{db}.{region}.api.lancedb.com/v1/table/{name}/drop_columns \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "columns": [ "<string>" ] } '
{}
Remove columns from a table permanently. This operation cannot be undone and will result in the loss of all data in the specified columns.
name of the table
The columns to drop.
Update successful