package
2.6.0+incompatible
Repository: https://github.com/ultraware/qb.git
Documentation: pkg.go.dev

# Functions

And requires both conditions to be true.
Between checks if f1 is between i1 and i2.
Eq checks if the values are equal (=).
Exists checks if the subquery returns rows.
Gt checks if i1 is greater than i2 (>).
Gte checks if i1 is greater or equal to i2 (>=).
In checks if f1 is in the list.
InQuery checks if f1 is in the subquery's result.
IsNull checks if the field is NULL.
Like checks if the f1 is like s.
Lt checks if i1 is less than i2 (<).
Lte checks if i1 is less than or equal to i2 (<=).
Ne checks if the values are unequal (!=).
NewCondition returns a new Condition.
Not reverses a boolean (!).
NotNull checks if the field is not NULL.
Or requires one of the conditions to be true.