Managing Roles   «Prev 

SQL Grant statement


SQL Grant statement
SQL Grant statement

  1. GRANT: The GRANT statement is used to grant privileges.
  2. CREATE SESSION, CREATE TABLE, CREATE INDEX, ALTER SESSION: These are privileges that you are granting. They follow the GRANT keyword as a comma-delimited list.
  3. TO coin_admin: The TO clause indicates the user to whom you are granting the privileges. In this case, they are being granted to the user named coin_admin.