Data Control Language, ALL PRIVILEGES
Format: GRANT ALL PRIVILEGES
ON table_name
TO {user_id | PUBLIC} [WITH GRANT OPTIONS];
ALL PRIVILEGES is used to give all privileges the grantor has to grant to another user.
Generally this is not a good idea, because you may presume that a user has certain rights when they don’t.