Difference between revisions of "Relational and Logical Operators"
Line 1: | Line 1: | ||
− | |||
=== Relational and Logical Operators === | === Relational and Logical Operators === | ||
Line 22: | Line 21: | ||
| width="594" style="border:1px solid #010101;" | | | width="594" style="border:1px solid #010101;" | | ||
− | + | ||
|- align="left" valign="top" | |- align="left" valign="top" | ||
Line 266: | Line 265: | ||
|} | |} | ||
− | The | + | The logical operators are shown next: |
<table width="1189" cellspacing="0" cellpadding="2" border="1" style="border-collapse:collapse; border:1px solid #010101" class="tableintopic"> | <table width="1189" cellspacing="0" cellpadding="2" border="1" style="border-collapse:collapse; border:1px solid #010101" class="tableintopic"> | ||
Line 295: | Line 294: | ||
</tbody></table> | </tbody></table> | ||
+ | |||
+ | The outcome of the relational and logical operators is a value of type bool. | ||
+ | [[Category:Operators]] |
Revision as of 08:37, 5 January 2012
Contents
Relational and Logical Operators
Relational refers to the relationships that values can have with one another, and logical refers to the ways in which true and false values can be connected together. Since the relational operators produce true or false results, they are often used in combination with the logical operators.
The relational operators are as follows:
Not equal to
Operator |
Meaning |
== |
|
!= |
Not equal to |
> |
Greater than |
< |
Less than |
>= |
Greater than or equal to |
<= |
Less than or equal to |
Those relational operators cannot be applied to all data types and in some cases, two values of different types cannot be compared to each other.
<tbody> </tbody>
|
array |
bool |
number |
question |
range |
string |
datetime |
array |
|
|
|
|
=, ! |
|
|
bool |
|
=, ! |
=, ! |
|
|
=, ! |
|
number |
|
=, ! |
=, !=, >, <, <=, > |
|
=, ! |
|
|
question |
|
|
|
|
|
|
|
range |
=, ! |
|
=, ! |
|
|
|
|
string |
|
=, ! |
=, ! |
|
|
=, ! |
|
datetime |
|
|
|
|
|
|
=, !=, >, <, <=, > |
The logical operators are shown next:
<tbody> </tbody>Operator |
Meaning |
&& |
Logical and |
|| |
Logical or |
! |
Logical negation |
The outcome of the relational and logical operators is a value of type bool.