OR

•    The WHERE clause can include multiple OR operators to filter records based on more than one condition.

 

          SELECT column1, column2, . . .

          FROM table_name

          WHERE condition1 OR condition2 OR condition3 . . . ;

Lesson Navigation
Previous: NOT