Or operator : ||
And operator : &&
+--------+--------+--------+
| Value1 | Value2 | Result |
+--------+--------+--------+
| 0 | 0 | 0 |
+--------+--------+--------+
| 0 | 1 | 0 |
+--------+--------+--------+
| 1 | 0 | 0 |
+--------+--------+--------+
| 1 | 1 | 1 |
+--------+--------+--------+
SELECT *
FROM Customers
WHERE last_name = 'Doe' AND country = 'USA';