给名字是zhangsan的用户分配对数据库studb中的stuinfo表的查询和插入数据权限的语句是(
)
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
)
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