View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

PROD - Mathematical

Multiplies x with y

Input parameters

Name Type Optional Description
x Number False  
y Number False  

Output

Number: x * y

Usage

PROD(<x>, <y>)

Examples

Example 1

Query

LOAD tmp
AS ('': PROD(2, 4))

Result

8

Example 2

Query

LOAD tmp
AS ('': PROD(-3, 2))

Result

-6

Example 3

Query

LOAD tmp
AS ('': PROD(0.1, 400))

Result

40.0