SQL OR CONDITION
SQL OR condition is used in a SQL query to create a SQL statement where records are returned when any one of the condition met. It can be used in a SELECT statement, INSERT statement, UPDATE statement or DELETE statement.
SQL OR Syntax
SELECT columns FROM tables WHERE condition 1 OR condition 2;