Currently I have a master user in RDS like this
'master'@'%'
and I've create a user like this
'new_user'@'%'
As of now I can grant that user with these 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, CREATE USER, EVENT, TRIGGER ON *.* TO 'new_user'@'%' IDENTIFIED BY '1234' WITH GRANT OPTION
Is it possible to grant these permission but with the limit of
DELETE PRIVILEGE?
on a specific table like this tblCart
Like, I can delete on all but except for table tblCart
deleting is not allowed in this table?