DB Delete¶
The DB Delete block removes records from your database table based on specific conditions.
Inputs¶
- Connection: The specific database integration to use.
- Table Name: The name of the table to delete from.
- Conditions: Rules to identify which records to delete (e.g., "id equals 5").
Logic¶
- The block connects to the database.
- It identifies rows in the Table Name that match the Conditions.
- It permanently removes those rows.
- It outputs the result of the operation.