Im trying to grant a user all privileges, as well as grant them with the privilege to grant other users SELECT only access.
This is my statement show here :
GRANT ALL ON [database] TO 'user1' WITH GRANT OPTION
However this allows user1 to grant others the same privileges as their own. I want to only allow user1 to grant others SELECT privileges only. Is what Im asking even possible?
Thanks,