DuroDBMS API
1.7
|
OPERATOR = (ANY, ANY) RETURNS boolean;
The equality operator. Defined for every type. The arguments must be of the same type.
TRUE if the two arguments are equal, FALSE otherwise.
OPERATOR <> (ANY, ANY) RETURNS boolean;
The inequality operator. Defined for every type. The arguments must be of the same type.
TRUE if the two arguments are not equal, FALSE otherwise.
OPERATOR < (integer, integer) RETURNS boolean;
OPERATOR < (float, float) RETURNS boolean;
OPERATOR < (string, string) RETURNS boolean;
The lower-than operator.
TRUE if the first argument is lower than the first. If the operands are strings, the strings will be compared using strcoll().
OPERATOR <= (integer, integer) RETURNS boolean;
OPERATOR <= (float, float) RETURNS boolean;
OPERATOR <= (string, string) RETURNS boolean;
The lower-than-or-equal operator.
TRUE if the first argument is lower than or equal to the second. If the operands are strings, the strings will be compared using strcoll().
OPERATOR > (integer, integer) RETURNS boolean;
OPERATOR > (float, float) RETURNS boolean;
OPERATOR > (string, string) RETURNS boolean;
The greater-than operator.
TRUE if the first argument is greater than the first. If the operands are strings, the strings will be compared using strcoll().
OPERATOR >= (integer, integer) RETURNS boolean;
OPERATOR >= (float, float) RETURNS boolean;
OPERATOR >= (string, string) RETURNS boolean;
The greater-than-or-equal operator.
TRUE if the first argument is greater than or equal to the second. If the operands are strings, the strings will be compared using strcoll().