Los comandos AND, OR y NOT son para agregar condiciones al comando WHERE. De esta forma nos permite realizar consultas mucho más complejas.
SELECT columnas FROM tabla WHERE Condicion1 AND condicion2;
SELECT * FROM Customers WHERE country=’Germany’ AND city=’Berlin’;
SELECT columnas FROM tabla WHERE condición1 OR condición2;
SELECT * FROM Customers WHERE city=’Berlin’ OR city=’Munich’;
SELECT columnas FROM tabla WHERE NOT condición1;
SELECT * FROM Customers WHERE NOT Country=’Germany’;
Combinar and or y not:
SELECT * FROM Customers WHERE NOT country=’Germany’ AND NOT Country=’USA’;