Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Summary
Comparison operators test whether two expressions are the same. U-SQL supports the following operators:
Operator | Meaning |
---|---|
IS NULL | Determines whether a specified expression is NULL. |
== (Equals) | Equal to |
> (Greater Than) | Greater than |
< (Less Than) | Less than |
>= (Greater Than or Equal To) | Greater than or equal to |
<= (Less Than or Equal To) | Less than or equal to |
!= (Not Equal To) | Not equal to |