MySQL SQL
MySQL NOT
Negate a condition.
Exclude matches
SELECT * FROM products
WHERE NOT category = 'Accessories';NOT reverses a Boolean condition. NOT IN and NOT LIKE are useful specialized forms.
Continue learning
MySQL SQL
Negate a condition.
SELECT * FROM products
WHERE NOT category = 'Accessories';NOT reverses a Boolean condition. NOT IN and NOT LIKE are useful specialized forms.
Continue learning