~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Logical and Comparison Operators
================================

=========     ==========================
Operators     Description
=========     ==========================
AND (&&)       Logical AND
OR (||)        Logical OR
NOT (!)        Logical NOT
< 	       less than
> 	       greater than
<= 	       less than or equal to
>= 	       greater than or equal to
= 	       equal
<> or !=       not equal
=========     ==========================