)
A: grant
select,insert on studb.stuinfo
for 'zhangsan'@' localhost'
B: grant
select,insert on studb.stuinfo
to 'zhangsan'@' localhost'
C: grant
'zhangsan'@'localhost' to select,insert for studb.stuinfo
D: grant
'zhangsan'@'localhost' to studb.stuinfo
on select,insert
举一反三
- 给名字是zhangsan的用户分配对数据库studb中的stuinfo表的查询和插入数据权限的语句是(
- 给名字是zhangsan的用户分配对数据库studb中的stuinfo表的查询和插入数据权限的语句是()
- 给名字是zhangsan的用户分配对数据库studb中的stuinfo表的查询和插入数据权限的语句是( )
- 给xiaowang的用户分配对数据库course 中的student表的查询、更新和插入数据权限的语句是_______。 A: grant select,update,insert on course.student for ‘xiaowang@localhost’; B: grant select,update,insert on course.student to ‘xiaowang@localhost’; C: grant ‘xiaowang@localhost’ to select,update,insert for course.student; D: grant ‘xiaowang@localhost’ to course.student on select,update,insert;
- 授予用户Jean可以查询帐户表account的权限,使用的SQL语句是(<br/>) A: GRANT<br/>SELECT ON account TO Jean B: GRANT<br/>SELECT TO Jean ON account C: GRANT<br/>SELECT TO account ON Jean D: GRANT<br/>SELECT ON Jean TO account
内容
- 0
使用GRANT语句创建用户名为user1、密码为123,并授予该用户对chapter08.student表有查询权限。 下面选项中,能实现上述功能的语句是 A: GRANT SELECT ON chapter08.student FOR 'user1'@'localhost' IDENTIFIED BY '123'; B: GRANT USER SELECT ON chapter08.student TO 'user1'@'localhost' IDENTIFIED BY '123'; C: GRANT USER SELECT ON chapter08.student 'user1'@'localhost' IDENTIFIED BY '123'; D: GRANT SELECT ON chapter08.student TO 'user1'@'localhost' IDENTIFIED BY '123';
- 1
将查询Student表和修改学生学号的权限授给用户U4。实现此功能的SQL语句是(<br/>)。 A: GRANT UPDATE(Sno),SELECT<br/>ON TABLE Student TO U4 ; B: GRANT UPDATE,SELECT<br/>ON TABLE Student TO U4 ; C: GRANT SELECT ON TABLE<br/>Student TO U4 ; D: GRANT UPDATE ON TABLE<br/>Student TO U4 ;
- 2
请按照以下要求创建用户并授予权限。 [br][/br] 使用GRANT语句创建一个新的用户,用户名为user4、密码为123。 user4用户对所有数据库有INSERT、SELECT权限。 并使用WITH GRANT OPTION子句。 使用SELECT语句来查询user表中的用户权限
- 3
grant select on *.* to 'test1'@'localhost' 中的select表示什么? A: 权限类型 B: 查询test1 C: 查询localhost D: 可以省略
- 4
使用SQL SERVER,假设U1-U5用户已存在,请将对教学(STC)数据库进行如下操作的SQL语句补充完整。 (3)把对Student表和Course表的增、删、改、查权限授予用户U2和U3。[br][/br] grant insert,delete,update,select on to U2,U3 grant insert,delete,update,select on Course to