ALL (SQL Server Compact Edition)

Compares a scalar value with a single-column set of values.

Syntax

scalar_expression { = | <> | != | > | >= | !> | < | <= | !< } ALL ( subquery )

Arguments

  • scalar_expression
    Any valid expression in Microsoft SQL Server 2005 Compact Edition.
  • { = | <> | != | > | >= | !> | < | <= | !< }
    The comparison operator.
  • subquery
    A subquery that returns a result set of one column. The data type of the returned column must be the same data type as the data type of scalar_expression.

    A subquery is a restricted SELECT statement. The ORDER BY clause, the COMPUTE clause, and the INTO keyword are not permitted.

Return Value

bit

Remarks

Returns TRUE when the comparison specified is TRUE for all pairs (scalar_expression, x) where x is a value in the single-column set. Otherwise, returns FALSE.