SELECT
There are two modes for the SELECT operation.
Batch mode
Reads data in chunks defined by Batch Size and for a maximum of Max iterations iterations.
Setting iterations to 0 will run the batch until no more rows are available.
Refer to Batching for details about batching and the Batch End block, which is required.

Edge mode
This used data on the input edge to perform fetch data using a key to denote the value to lookup in the database.
You need to specify two fields.
Edge key for matching - the key on the input edge whose value will be used for the lookup.
DB field to match against - they database field to use for the lookup.

You can see what is going on behind the scenes by looking at the generated SQL. For Postgres, it will look like this.
At run time, $$id
will be replaced by the list of values referenced by Edge key for matching.
Where editor
When you set a where condition, the following dialog will appear.

This generates the following WHERE clause.
You can also use tokens for the values (see Editing SQL) instead of literal values.