Database tables
The code to insert a value for a database table is {TABLE}. It requires at least one parameter, which is the name of the column from which to pick the value. As an alternative, the argument may be an integer, which is a zero-based column index. In general it is recommended to use the name of the column and not the index.
Example:
Product:
{TABLE;Description}
Assuming the table has a column "Description", which on the current row has the value "Bananas", the following would be printed:
Product: Bananas