I am trying to revoke the Delete
on mysql user
I used this code
REVOKE DELETE
ON *.*
FROM 'sample_user'@'%';
But this returns me something like this
Error Code: 1141. There is no such grant defined for user
Is it possible to revoke it? Currently I have this privileges
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, PROCESS, REFERENCES, INDEX, ALTER, SHOW
DATABASES, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT,
CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CR...
I just want to remove the Delete
Privilege