The user Alice wants to grant all users query privileges on her DEPT table. Which SQL
statement accomplishes this?
A.
GRANT select ON dept TO ALL_USERS;
B.
GRANT select ON dept TO ALL;
C.
GRANT QUERY ON dept TO ALL_USERS
D.
GRANT select ON dept TO PUBLIC;
To grant the SELECT privilege on table s.v to all users, use the following syntax:
GRANT SELECT ON TABLE s.v to PUBLIC
http://docs.oracle.com/javadb/10.8.3.0/ref/rrefsqljgrant.html