DB Update¶
The DB Update block modifies data in existing rows of your table.
Inputs¶
- Connection: The database integration.
- Table Name: The table to update.
- Conditions: Rules to find which records to update.
- Data: The new values to apply.
- Use Param: If checked, uses the previous block's output as the update data.
Logic¶
- The block identifies rows in Table Name that match Conditions.
- It applies the changes defined in Data to those rows.
- It returns the result of the update operation.