Skip to main content

Delete Row from Table

Removes the first row from an in-memory table whose key-column values match the provided keys. Requires key columns to be set on the table (via CreateTable, TableImport, or SetTableKeyColumns).

Category: Named Tables & Rules Engine · Group: Tables · Activity name: TableDeleteRow

The TableDeleteRow activity in the designer

Example

outputVariable = TableDeleteRow("<tableName>", {})

Inputs

NameTypeRequiredDefaultDescription
Table NamestringYesName of the target table.
Key ValuesobjectYesKey column values identifying the row to delete (e.g., {"OrderId": "A-1"}). Must include a value for every key column.

Outputs

NameTypeDescription
outputVariablejsonStores result (tableName, action: 'deleted'|'not_found', totalRows).