Multiplication *

Operator: *

The multiplication operator * is used to multiply several values. The values can be of the following type:

  • number

  • duration

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

value1 * value2

37 * 7 => 259

24 * '1h' => 1 day

'2m' * 30 => 1 hour

'1d' * '2h' => expression type mismatch

Last updated

Was this helpful?