SQLNOT Operator
The NOT Operator
TheNOT operator is used in combination with other operators to give the opposite result, also called the negative result.
In the select statement below we want to return all customers that are NOT from Spain:
Example
Select only the customers that are NOT from Spain:
WHERE NOT Country = 'Spain';
In the example above, theNOT operator is used in combination with the= operator, but it can be used in combination with other comparison and/or logical operators.See examples below.
Syntax
SELECTcolumn1, column2, ...
FROMtable_name
WHERE NOTcondition;
Demo Database
Below is a selection from theCustomers table used in the examples:
| CustomerID | CustomerName | ContactName | Address | City | PostalCode | Country |
|---|---|---|---|---|---|---|
| 1 | Alfreds Futterkiste | Maria Anders | Obere Str. 57 | Berlin | 12209 | Germany |
| 2 | Ana Trujillo Emparedados y helados | Ana Trujillo | Avda. de la Constitución 2222 | México D.F. | 05021 | Mexico |
| 3 | Antonio Moreno Taquería | Antonio Moreno | Mataderos 2312 | México D.F. | 05023 | Mexico |
| 4 | Around the Horn | Thomas Hardy | 120 Hanover Sq. | London | WA1 1DP | UK |
| 5 | Berglunds snabbköp | Christina Berglund | Berguvsvägen 8 | Luleå | S-958 22 | Sweden |
NOT LIKE
Example
Select customers that does not start with the letter 'A':
WHERE CustomerName NOT LIKE 'A%';
NOT BETWEEN
Example
Select customers with a customerID not between 10 and 60:
WHERE CustomerID NOT BETWEEN 10 AND 60;
NOT IN
Example
Select customers that are not from Paris or London:
WHERE City NOT IN ('Paris', 'London');
NOT Greater Than
Example
Select customers with a CustomerId not greater than 50:
WHERE NOT CustomerID > 50;
NOT Less Than
Example
Select customers with a CustomerID not less than 50:
WHERE NOT CustomerId < 50;



