The comparison operators presented below can be used to perform calculations as well as filter a dataset. A list of comparison operators can be found here.
==, tests for equality.
!=, tests for inequality.
<, less than.
<=, less than or equal to.
>, greater than.
>=, greater than or equal to.
The example below shows how to perform a comparison of two values, where we check if one value is greater than the other.
{
"FirstValue": 10,
"SecondValue": 16,
"ThirdValue": 8
}
FirstValue > SecondValue
where FirstValue is 10, and the SecondValue is 16. This yields a result that is False
.