Skip to content

Returns the product of two numbers.

func.multiply(<x>, <y>)
func.multiply(6, 7)
┌────┐
42
└────┘
MULTIPLY(<x>, <y>)
SELECT MULTIPLY(6, 7);
┌────┐
42
└────┘