Any valid expression in Microsoft SQL Server Compact 3.5.
NOT
Specifies that the Boolean result be negated. The predicate reverses its return values, returning TRUE if the value is NOT NULL, and FALSE if the value is NULL.
To determine whether an expression is NULL, use IS NULL or IS NOT NULL instead of comparison operators, such as = or !=. Comparison operators return UNKNOWN if either or both arguments are NULL.