AND Operator in SQLAND operator is a logical operator. It returns the boolean value if the condition is TRUE then it returns TRUE otherwise it returns FALSE.
AND Operator Basic Syntax with SELECT Query
SELECT column_1, column_2, colimn_3, ...
FROM table_name
WHERE [condition_1] AND [condition_2] AND [condition_3] ...;