SQL Server (Transact-SQL) NOT 关键字与 SQL Server WHERE 一起使用 子句,并显示指定条件不成立的记录。
语法
在 SQL Server (Transact-SQL) 中使用 NOT 关键字的语法如下:
SELECT column1, column2, column3, ...
FROM table_name
WHERE NOT condition;
示例:
考虑一个名为 Employee 的数据库表,其中包含以下记录:
EmpID | Name | City | Age | Salary |
---|---|---|---|---|
1 | John | London | 25 | 3000 |
2 | Marry | New York | 24 | 2750 |
3 | Jo | Paris | 27 | 2800 |
4 | Kim | Amsterdam | 30 | 3100 |
5 | Ramesh | New Delhi | 28 | 3000 |
6 | Huang | Beijing | 28 | 2800 |
要选择 Employee 表中 City 不是"New Delhi"的所有记录,查询如下。
SELECT * FROM Employee
WHERE NOT City = 'New Delhi';
查询结果如下:
EmpID | Name | City | Age | Salary |
---|---|---|---|---|
1 | John | London | 25 | 3000 |
2 | Marry | New York | 24 | 2750 |
3 | Jo | Paris | 27 | 2800 |
4 | Kim | Amsterdam | 30 | 3100 |
6 | Huang | Beijing | 28 | 2800 |