欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle

程序员文章站 2022-11-02 12:39:49
1.创建用户 create user user_name identified by user_password; 2.赋予权限 赋予查询权限 grant select on table_name to username 赋予更新权限 grant update on table_name to us ......

1.创建用户

  create user user_name identified by user_password;

2.赋予权限

赋予查询权限

  grant select on table_name to username

赋予更新权限

  grant update on table_name to username

赋予插入权限

  grant insert on table_name to username  

赋予删除权限

  grant delete on table_name to username