Comparison Operators

Operator Description
Equality operator = The equality operator = returns true if its operands are equal, false otherwise.
Greater than or equal operator >= The greater than or equal operator >= returns true if its left-hand operand is greater than or equal to its right-hand operand, false otherwise.
Greater than operator > The greater than operator > returns true if its left-hand operand is greater than its right-hand operand, false otherwise.
Less than or equal operator <= The less than or equal operator <= returns true if its left-hand operand is less than or equal to its right-hand operand, false otherwise.
Less than operator < The less than operator < returns true if its left-hand operand is less than its right-hand operand, false otherwise.
Inequality operator <> The inequality operator <> returns true if its operands aren’t equal, false otherwise.