Which Of The Following Is The Correct Syntax To Use Or Operator #52
Which of the following is the correct syntax to use OR operator?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Clause, Operators and Keywords - SQL And, Or, Not - Quiz No.1.
Which of the following is the correct syntax to use OR operator?
Select * from table_name where condition1 OR condition2;
Select * from table_name where condition1 || condition2;
Select *from table_name where condition1 |condition2;
Select *from table_name where condition1 OR | condition2;