1The AND operator is a logical operator that combines two or more Boolean expressions and returns true only if both expressions evaluate to true. The AND operator returns false if one of the two expressions evaluate to false.
2
3Here is the syntax of the AND operator:
4
5SELECT
6 customername,
7 country,
8 state
9FROM
10 customers
11WHERE
12 country = 'USA' AND state = 'CA';