...
Multiplies each value in a column by the specified positive or negative decimal value.
Syntax
For non-decimal values:
set-column :output_column column * <decimal_value>
For decimal values:
set-column :column decimal:multiply(column,decimal_value)
Examples
Multiplies each value by 10 in the price
column and outputs results to the price_new
column:
...