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

sql server 数据控制 权限

程序员文章站 2022-07-14 15:34:15
...

可视化工具创建删除用户:https://blog.csdn.net/hza419763578/article/details/82918915

 

把查询Student表的权限授给用户U1

Grant select
on table student
to u1;

 

 

把对表student表和course表的全部操作权限授予用户U2和U3

Grant all privileges
on table student,course
to U2,U3;

 

 

把对表SC的查询权限授予所有用户

Grant select
on table SC
to public;

 

 

把查询studnet表和修改学号的权限授予用户U4

Grant select,update(sno)
on table student
to U4;

 

 

把对表SC的insert权限授予用户U5,并允许将此权限再授予其他用户

Grant insert
on table SC
to U5
with grant option;