SQL許可權授予和收回

2021-08-07 22:51:31 字數 431 閱讀 6111

grant select         把查詢student表的許可權授給使用者ui

on table student 

to ui; 

grant select

on table student 

to  public

with  grant option;

revoke select  收回許可權

on table sc

from public;

資料庫角色是被命名的一組與資料庫操作相關的許可權,角色是許可權的集合。

create role jue;

grant  select,update,insert

on table student

to ri;

grant ri to 王平;

revoke ri from 王平;

Oracle許可權授予

一 使用者 sys 系統管理員,擁有最高許可權 system 本地管理員,次高許可權 scott 普通使用者,密碼預設為tiger,預設未解鎖 二 登陸 sqlplus as sysdba 登陸sys帳戶 sqlplus sys as sysdba 同上 sqlplus scott tiger 登陸...

Oracle許可權授予

一 使用者 sys 系統管理員,擁有最高許可權 system 本地管理員,次高許可權 scott 普通使用者,密碼預設為tiger,預設未解鎖 二 登陸 sqlplus as sysdba 登陸sys帳戶 sqlplus sys as sysdba 同上 sqlplus scott tiger 登陸...

賦予 收回 查詢許可權

grant privileges columns on database.table to username hostname identified by password password username hostname identified by password password with...