In

The IN operators

The IN operator allows you to compare one left-hand side value (L) with several right-hand side values (R) at once. The result of the statement is TRUE if L is equal to any of the values in R.

firstName in ('James', 'Richard', 'Danny')

Last updated