Revoke Privilege
REVOKE INSERT ON college.* FROM 'asha'@'localhost'; takes that right away. SHOW GRANTS FOR 'asha'@'localhost'; to see what they still have.
REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'asha'@'localhost'; is the blunt form before DROP USER.
Trap — REVOKE on the wrong host ('asha'@'%') while they still connect as localhost.
On the example next to this theory: Revoke Privilege: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
REVOKE INSERT ON college.* FROM 'asha'@'localhost';