NOT clause in MySQL
MySQL NOT In MySQL, the NOT condition is used to negate a condition in SELECT, INSERT, UPDATE, and DELETE statements. Syntax: NOT condition; Parameters: condition: It is used to specify the conditions to negate. Example 1: Using NOT with LIKE condition. Items table: ID NAME QUANTITY 1 Electronics 30 2 Sports 45 3 Fashion 100 … Read more