Expressions (U-SQL)

Summary

In U-SQL, expressions operate on its typed values. These expressions appear in the context of U-SQL statements and consist of a few limited U-SQL operators and the full power of C# expressions.

While some U-SQL statements allow arbitrary expressions, others may restrict expressions based on the types the expressions are allowed to return, on whether they can be computed at compile time (so called constant-foldable expressions), or even the operators that are allowed in an expression.

The following sections provide the grammar and discussion of some of the more frequently encountered types of expressions. For more details about their use and restrictions in specific statements, please refer to the section on that statement.

Syntax

Static_String_Expression :=                                                                              
    csharp_string_literal   
|   constant_foldable_string_expression   
|   String_Variable.

See Also