MySQL By Examples for Beginners - Nanyang Technological University, Singapore
Logical Operators - AND, OR, NOT, XOR You can combine multiple conditions with boolean operators AND, OR, XOR. You can also invert a condition using operator NOT. For examples, mysql> SELECT * FROM products WHERE quantity >= 5000 AND name ......