The Question given in Past Exam was
you need to give academic role the ability to select from, insert into and modify existing rows in Student table. Anyone given this Academic role should be able to Pass those privileges to other. write a query
Create ROLE academic; // I created the role
GRANT SELECT, INSERT, DELETE on student to academic; // Granted privileges
GRANT academic to username; // passed it to user
Will the user have the privileges to pass it to others? If not, how to ?