|
JOIN (Short Name: JOI)
|
|
|
Comparison Operator
|
Rows are included if...
| |
|
=
|
EQ
|
colname1 is equal to colname2 (the default)
|
|
<>
|
NE
|
colname1 is not equal to colname2
|
|
>
|
GT
|
colname1 is greater than colname2
|
|
>=
|
GE
|
colname1 is greater than or equal to colname2
|
|
<
|
LT
|
colname1 is less than colname2
|
|
<=
|
LE
|
colname1 is less than or equal to colname2
|