Operators in WHERE clause
The operators that we can use in the WHERE clause are as follows:
= Equal
<> or != Not equal
> Greater than
< Less than
>= Greater than or equal
<= Less than or equal
BETWEEN Between an inclusive range
LIKE Search for a pattern
IN To specify multiple possible values for a column
AND The AND operator displays a record if both the first condition AND the second condition are true
OR The OR operator displays a record if either the first condition OR the second condition is true
Comments
Post a Comment