Equal(=): The column value must
be equal to the comparation value.
Different (<>): The column
value must be different to the comparation value.
Greater than (>): The column
value must be greater than to the comparation value.
Less than (<): The column
value must be less than to the comparation value.
Greater or equal (>=): The column
value must be greater or equal to the comparation value.
Less or equal (<=): The
column value must be less or equal to the comparation value.
Like (like): This operator only
applies to data Char fields. You can specify a search
pattern to bring all records that match it. You can specifiy a pattern
march using the special characters % and _. % means 0 or more
characters and _ means 1 character, so a% means everything that begins
with and a and %xyz_
means everything that will end with xyz and another character. Usually
you will use the following patterns:
-
something%: text that begins with the word
something.
-
%something%: text that contains the word
something.
-
%something: text that ends with the word
something.
In list (in): You can specify a
list of comma separated values. For example 'A','B','C' .
Between (between): The database
value must be between the values defining this value range. The range
is inclusive and includes the values given here.
Is empty(is null): The field value
must be empty or null.Igual (=): El valor del campo debe ser
igual al valor que se especifica para cumplir la
condición.