Comparison Operations: Difference between revisions
Jump to navigation
Jump to search
(edit) |
(edit) |
||
| Line 6: | Line 6: | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''='''||may be used for assignment or comparing 2 values like the '''==''' operator | |width="10%"|'''='''||may be used for assignment or comparing 2 values like the '''==''' operator | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''<>'''||not equal | |width="10%"|'''<>'''||not equal | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''<'''||less than | |width="10%"|'''<'''||less than | ||
| Line 38: | Line 18: | ||
|-valign="top" | |-valign="top" | ||
|width="10%"|'''>='''||more than or equal to | |width="10%"|'''>='''||more than or equal to | ||
|} | |} | ||
<noinclude> | <noinclude> | ||
Revision as of 12:34, 11 January 2012
Below is the list of binary operators:
| Operator | Effect |
| = | may be used for assignment or comparing 2 values like the == operator |
| <> | not equal |
| < | less than |
| <= | less than or equal to |
| == | equality |
| > | more than |
| >= | more than or equal to |