ILux Filter Attribute Reference

Filter Relationship Operators

Filter attribute relationship operators are used to specify the desired relation between the filter attribute and its value.

Operator Meaning Example
is is equal to Domain is 'ilux'
is not is not equal to Domain is not 'ilux'
LIKE contains string (See Wildcards.) FileName LIKE 'P__L%'
BETWEEN value AND value set value range WhenHit BETWEEN '1997-01-01' AND '1997-12-31'
= is equal to Method = 'GET'
< is less than WhenHit < '1996-06-01'
> is greater than WhenHit > '1996-06-01'
<= is less than or equal to Filesize <= '8192'
>= is greater than or equal to VisitDuration >= '60'
<> is not equal to Domain <> 'webcrawlers'

Back to top

Wildcards Right

Related Topics