MySQL WHERE clause is used to filter the result based on a specified condition. 

S. No.TitleSyntex
1Simple Equality ConditionSELECTFROM employees  WHERE department = 'IT'; 
 
2 Inequality ConditionSELECTFROM employees  WHERE salary != 50000; 
 
3Range ConditionSELECTFROM employees  WHERE salary BETWEEN 40000 AND 60000; 
 
4Pattern Matching with LIKESELECTFROM products  WHERE product_name LIKE '%Widget%'; 
 
5 Combining ConditionsSELECTFROM employees  WHERE salary > 50000 AND department = 'IT'; 
 
6NULL CheckSELECTFROM employees  WHERE manager IS NULL;