📜  SQL |非运算符

📅  最后修改于: 2022-05-13 01:54:25.103000             🧑  作者: Mango

SQL |非运算符

非语法
SELECT column1, colomn2, ... FROM table_name WHERE NOT 条件;
演示数据库
下面是从 Northwind 示例数据库中的“客户”表中选择的内容:

Customer IDCustomer NameCityPostalCodeCountry
1John WickNew York1248USA
2Around the HornLondonWA1 1DPUK
3RohanNew Delhi100084India

非示例
以下 SQL 语句从“客户”中选择所有国家/地区不是“英国”的字段
SELECT * FROM Customers WHERE NOT Country='UK';

Customer IDCustomer NameCityPostalCodeCountry
1John WickNew York1248USA
3RohanNew Delhi100084India

结合 AND、OR 和 NOT
您还可以组合 AND、OR 和 NOT运算符。
例子:
1.) 从非 Country='USA' 而不是 Country='UK' 的客户中选择 *;

Customer IDCustomer NameCityPostalCodeCountry
3RohanNew Delhi100084India