AND (Transact-SQL)
SQL Server 2005
Combines two Boolean expressions and returns TRUE when both expressions are TRUE. When more than one logical operator is used in a statement, the AND operators are evaluated first. You can change the order of evaluation by using parentheses.
Transact-SQL Syntax Conventions
- boolean_expression
-
Is any valid expression that returns a Boolean value: TRUE, FALSE, or UNKNOWN.
Reference
Functions (Transact-SQL)Operators (Transact-SQL)
SELECT (Transact-SQL)
WHERE (Transact-SQL)