SQL AND Operator
The WHERE clause can contain one or many AND operators.
The AND operator is used to filter records based on more than one condition, like if you want to return all customers from Spain that starts with the letter 'G':
Example
Select all customers from Spain that starts with the letter 'G':
SELECT \*
FROM Customers
WHERE Country = 'Spain' AND CustomerName LIKE 'G%';