Comparison Operations: Difference between revisions
Jump to navigation
Jump to search
(edit) |
(edit) |
||
| Line 5: | Line 5: | ||
|width="10%"|'''Operator'''|| '''Effect''' | |width="10%"|'''Operator'''|| '''Effect''' | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''='''|| | |width="10%"|'''='''||equal, like the '''==''' operator below | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''=='''|| | |width="10%"|'''=='''||equal | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''<>'''||not equal | |width="10%"|'''<>'''||not equal | ||
Revision as of 12:37, 11 January 2012
Below is the list of comparison operators:
| Operator | Effect |
| = | equal, like the == operator below |
| == | equal |
| <> | not equal |
| < | less than |
| <= | less than or equal to |
| > | more than |
| >= | more than or equal to |