There are three logical operators in SQL - AND, OR, and NOT. The AND operator selects rows where all conditions are true, OR selects rows where at least one condition is true, and NOT selects rows where the condition is false. These operators allow combining multiple conditions in the WHERE clause to filter rows. Nested operators follow a specific order of evaluation: NOT, AND, then OR.