Skip to main content

Delete And Update Table Rows

Delete Rows

Rows in a Table can be deleted with the Delete Table Rows action.

Three key-values need to be provided to the action in order for a row to be deleted. These are, but not limited to.

  • "value":
  • "column":
  • "operator":

In the below example we set the key-values to.

  • "value": "Elias",
  • "column": "name",
  • "operator": "="

This will delete any Row that has a Value of Elias in the Name column of our "broker_mapping" Table.

The operator being used "=" is a strict equals operator that will only match occurrences of Elias in the Table. For more information on operators please see the Operators page.

Update Rows

Rows can be updated in a similar fashion to that of deleting rows. To update rows use the Update Table Rows action.