An expression is a combination of symbols and operators that Microsoft® SQL Server™ evaluates to obtain a single data value. Simple expressions can be a single constant, variable, column, or scalar function. Operators can be used to join two or more simple expressions into a complex expression.
{ constant
| scalar_function
| [alias.]column
| local_variable
| (expression)
| (scalar_subquery)
| {unary_operator}expression
| expression {binary_operator} expression
}
SELECT MAX(UnitPrice)
FROM Products
Unary operators can be applied only to expressions that evaluate to any of the data types of the numeric data type category.
For a simple expression built of a single constant, variable, scalar function, or column name, the data type, precision, scale, and value of the expression is the data type, precision, scale, and value of the referenced element.
When two expressions are combined using comparison or logical operators, the resulting data type is Boolean and the value is one of three values: TRUE, FALSE, or UNKNOWN. For more information about Boolean data types, see Operators.
When two expressions are combined using arithmetic, bitwise, or string operators, the resulting data type is determined by the operator.
Complex expressions made up of many symbols and operators evaluate to a single-valued result. The data type, precision, and value of the resulting expression is determined by combining the component expressions two at a time until a final result is reached. The sequence in which the expressions are combined is defined by the precedence of the operators in the expression.
Two expressions can be combined by an operator if they both have data types supported by the operator and at least one of these conditions is TRUE:
If there is no supported implicit or explicit conversion, the two expressions cannot be combined.
In a programming language such as C or Microsoft Visual Basic®, an expression always evaluates to a single result. Expressions in an Transact-SQL select list have a variation on this rule: The expression is evaluated individually for each row in the result set. A single expression may have a different value in each row of the result set, but each row has only one value for the expression. For example, in this SELECT statement both the reference to ProductID and the term 1+2 in the select list are expressions:
SELECT ProductID, 1+2
FROM Northwind.dbo.Products
The expression 1+2 evaluates to 3 in each row in the result set. Although the expression ProductID generates a unique value in each result set row, each row only has one value for ProductID.
CASE | Functions |
CAST and CONVERT | LIKE |
COALESCE | NULLIF |
Data Types | SELECT |
Data Type Conversion | WHERE |
Data Type Precedence |