Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

SQL | NOT Operator

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

NOT Syntax SELECT column1, colomn2, … FROM table_name WHERE NOT condition; Demo Database Below is a selection from the “Customers” table in the Northwind sample database:

Customer ID Customer Name City PostalCode Country
1 John Wick New York 1248 USA
2 Around the Horn London WA1 1DP UK
3 Rohan New Delhi 100084 India

NOT Example The following SQL statement selects all fields from “Customers” where country is not “UK” SELECT * FROM Customers WHERE NOT Country=’UK’;

Customer ID Customer Name City PostalCode Country
1 John Wick New York 1248 USA
3 Rohan New Delhi 100084 India

Combining AND, OR and NOT You can also combine the AND, OR, and NOT operators. Example: 1.) SELECT * FROM Customers WHERE NOT Country=’USA’ AND NOT Country=’UK’;

Customer ID Customer Name City PostalCode Country
3 Rohan New Delhi 100084 India

Alternatively you can use <> ( Not Operator) to get the desired result :-

SELECT * FROM Customer WHERE Country <>'USA';

Output :-

 

My Personal Notes arrow_drop_up
Last Updated : 24 Mar, 2023
Like Article
Save Article
Similar Reads