Skip to main content
All operators supported by OmniQL.

Comparison Operators

Examples

Logical Operators

Examples

Precedence

NOT > AND > OR Use parentheses to control order:

Arithmetic Operators

Examples

Range Operators

BETWEEN

NOT BETWEEN

Set Operators

IN

NOT IN

Pattern Operators

LIKE

NOT LIKE

ILIKE (Case Insensitive)

Note: ILIKE is PostgreSQL-native. MySQL translates to LIKE with LOWER().

NULL Operators

IS NULL

IS NOT NULL

Operator Summary by Database

Limitations

Not currently supported in OmniQL (use native SQL):
  • JSON operators (->, ->>, @>, ?)
  • Array operators (ANY, ALL)
  • String concatenation (||)
  • EXISTS / NOT EXISTS subqueries

Next Steps

Clauses

All clause reference

Data Types

Type reference