!< (Not Less Than) (SQL Server Compact)

Compares two expressions. When you compare nonnull expressions using this operator, the result is TRUE when the left operand does not have a value lower than the right operand. Otherwise, the result is FALSE.

Syntax

expression ! < expression

Arguments

  • expression
    Any valid expression in Microsoft SQL Server Compact 3.5 (SQL Server Compact 3.5). Both expressions must have implicitly convertible data types. The conversion depends on the rules of data type precedence.

Result Types

bit

Example

The following example uses the not less than comparison operator to find all orders in the Order Details table with quantities that are equal to or more than 100 units.

SELECT * FROM "Order Details" WHERE Quantity !< '100'