Quick Tip About the NOT Keyword

Carlito · April 1, 2023

The NOT keyword can be placed either at the start of the argument or in the operator.

WHERE MyColumn NOT IN (Value1, Value2, Value3)

/*is the same as*/

WHERE NOT MyColumn IN (Value1, Value2, Value3)

Resources

Twitter, Facebook