Create Row
The Create Row step allows you to create a row in a table.
Send data as an object
By default, the expected format is an object that represents the row to be created. The object keys are the column names and the values are the values to be inserted.
This object will be sent to the server and converted to an INSERT statement like this:
Note: you can check the Payload section to see the actual object sent to the server.
Note: the unset fields will be presented as undefined and will not be used in the INSERT statement, so that the table defaults will be applied
You can always adjust the data before sending it.
Add additional values
The created_at
column must exist in the table schema, otherwise it will not be sent.
Change the values
Delete unwanted values
alternatively:
Join array values
Use default values
Send data field by field
If you'd like to send the data field by field, you can switch the field from the JS mode to a UI mode by clicking on the JS button above the right corner of the field.
In this case, you can specify each column separately:
Specify default values:
Trim spaces:
Last updated