Give permission to user 206 to read and modify the faculty and class tables. This user can authorize others to read and modify class but not faculty.
For the first part to the questions I have:
GRANT
SELECT, INSERT, DELETE, UPDATE
ON
faculty, class
TO
U206;
I'm not sure how to authorize others to read only class and not faculty though. Is there a restriction to put on when using WITH GRANT OPTION?