The OR clause is also known as the conjunctive operator and is used to combine multiple conditions in SQL statement.
Syntax:
SELECT * FROM tableName WHERE [condition1] OR [condition2]...OR [conditionN];
In the case of the OR clause any one of the conditions separated by OR should be true.
Example:
SELECT * FROM EMPLOYEE WHERE SALARY > 40000 OR AGE < 29;
Output:
EMP_ID EMP_NAME AGE SALARY
1 Parbhjot 28 35000
5 Parmender 28 45000
3 Nidhi 28 48000
4 Parbhjot 29 46000
2 Parmender 28 45000