Scalar FunctionsDynamic / JSON Functions
set_difference
Return the distinct elements of the first dynamic array that are not
Syntax
set_difference(set1, set)Parameters
Prop
Type
Returns: dynamic
Examples
Example 1
print set_difference(dynamic([1, 2, 3, 4]), dynamic([2, 4]))| print_0 (dynamic) |
|---|
| [1,3] |