Returns true if all of the provided expressions are true, otherwise false.
x ← and(boolean_expression1, boolean_expression2, ..., boolean_expressionN)
or
x ← boolean_exression1 and boolean_expression2
and(country==1, segment==2)
and(country==1, segment==2, gender==1)
and(country==1, (segment==2 or segment==3))
country==1 and segment==2
country==1 and segment==2 and gender==1
Comments