Docy

MySQL AND, OR and NOT Operators

Estimated reading: 2 minutes 883 views

The MySQL AND, OR and NOT Operators

The WHERE clause can be combined with AND, OR, and NOT operators.

The AND and OR operators are used to filter records based on more than one condition:

The AND operator displays a record if all the conditions separated by AND are TRUE.
The OR operator displays a record if any of the conditions separated by OR is TRUE.
The NOT operator displays a record if the condition(s) is NOT TRUE.

AND Syntax

SELECT column1, column2, …
FROM table_name
WHERE condition1 AND condition2 AND condition3 …;

				
					SELECT * FROM Customers
WHERE Country = 'Germany' AND City = 'Berlin';

				
			

The following SQL statement selects all fields from “Customers” where country is “Germany” AND city is “Berlin”:

OR Syntax

SELECT column1, column2, …
FROM table_name
WHERE condition1 OR condition2 OR condition3 …;

				
					SELECT * FROM Customers
WHERE City = 'Berlin' OR City = 'Stuttgart';

				
			

The following SQL statement selects all fields from “Customers” where city is “Berlin” OR “Stuttgart”:

NOT Syntax

SELECT column1, column2, …
FROM table_name
WHERE NOT condition;

				
					SELECT * FROM Customers
WHERE NOT Country = 'Germany';
				
			

The following SQL statement selects all fields from “Customers” where country is NOT “Germany”:

Leave a Comment

Share this Doc
CONTENTS