GE Query Operators
  • 30 Aug 2021
  • Contributors
  • Dark
    Light
  • PDF

GE Query Operators

  • Dark
    Light
  • PDF

Article summary

SymbolDescription
=equal to
>greater than
<less than
>=greater than or equal to
<=less than or equal to
<>not equal to
LIKE

Using the % wildcard, this one can be used in a few different ways:

  1. LIKE ‘%example’ will return results that end with ‘example’
  2. LIKE ‘example%’ will return results that begin with ‘example’
  3. LIKE ‘%example%’ will return results that have ‘example’ anywhere with the field
NOT LIKEThis works similarly to LIKE except it restricts the results;

Use the filter columns on the right side of the Query Filter tab (‘Or1’, ‘Or2’, ‘Or2’) to apply multiple filters on a given field.


Was this article helpful?