Expand Minimize
This topic has not yet been rated - Rate this topic

NOT (SQL Server Compact)

Negates a Boolean input.


[ NOT ] boolean_expression
boolean_expression

Any valid Boolean expression in Microsoft SQL Server Compact 3.5 (SQL Server Compact 3.5).

NOT reverses the value of any Boolean expression.

The following example returns a list of all products that have a unit price less than 10 dollars and more than 100 dollars.

SELECT ProductID, ProductName, UnitPrice 
FROM Products
WHERE UnitPrice NOT BETWEEN 10 AND 100
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.