Popular Tutorials
HTML
View allJavaScript
View allPage Index
Popular Tutorials
HTML
View allJavaScript
View allPopular Exercises
Page Index
MySQL OR Operator
The MySQL OR condition specifies that if you take two or more conditions then one of the conditions must be fulfilled to get the records as result.
Syntax:
WHERE condition1 OR condition2 ... OR condition_n;
Parameter explanation:
condition1, condition2, ... condition_n: Specifies all conditions that must be fulfilled for the records to be selected.
Let's move on to use of LIKE in MySQL
Share this page on :
© 2022 AnalyzeCode.com All rights reserved.