Fields
Sample data
This step runs a live query against the database, so the rows you get back depend on the data in your database. The example below looks up a product by the incomingsku and places the matching rows at matches.
| Field | Value |
|---|---|
| Database connection | The configured database connection |
| Query | SELECT sku, name, price FROM products WHERE sku = '&{sku}' |
| Destination | matches |
{ "sku": "SHIRT-RED-M" }, the returned rows are placed at matches:
UPDATE or INSERT) places an empty list at the destination.
See Placeholders for how to reference values such as &{sku} when building the query.