Subtract

This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics.

Copied!
Subtract( value_1, value_2, ... )

Description

The Subtract function returns the difference of a list of numbers.

Parameters

Parameter Type Definition and Requirements

value

A list of Numbers

Take the difference of these values.

Returns

A Number which is the difference of all provided Numbers.

Examples

The following query returns the result of subtracting 10 from 100:

Copied!
Subtract(100, 10)
90
Query metrics:
  •    bytesIn:  21

  •   bytesOut:  15

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 2ms

  •    retries:   0

\