This operator is used in <conditional> expressions. Use it to aggregate several conditions.
Symbol: OR
|
|
Example 1
|
|
Example 2 |
|
Example 3 |
5 < 10 OR 5 < 9
Result = TRUE
|
|
5 < 10 OR 5 < 4
Result = TRUE |
|
5 < 4 OR 5 < 3
Result = FALSE |
Updated: 3/25/2013 11:51 AM |