【例12.4】 将用户qian的口令修改为'abc'。
set password for 'qian'@'localhost'='abc';
#【例12.5】 授予用户lee在数据库stusys的student表上对学号列和姓名列的SELECT权限。
use stusys;
select * from student;
grant select(sno,sname)
on stusys.student
to 'lee'@'localhost';
#【例12.6】先创建新用户hong和liu,然后授予它们在数据库stusys的student表上的SELECT和INSERT权限。
create user 'hong'@'localhost','liu'@'localhost' ;
grant select,insert
on stusys.student
to 'hong'@'localhost','liu'@'localhost';
【例12.12】授予已存在用户liu在数据库stusys的student表上的SELECT和UPDATE权限,并允许将自身的权限授予其他用户。
grant select,update
on stusys.student
to 'liu'@'localhost'
with grant option;
#【例12.13】收回用户liu在数据库stusys的student表上的UPDATE权限,
revoke update
on stusys.student
from 'liu'@'localhost';
#【例12.14】查询以上用户对student表的权限。
select host,db,user,table_name,table_priv,column_priv
from mysql.tables_priv;
#注意:请同学们课外再把上面例题项目在课堂上已经操作的内容独立(不看书)再操作一遍,没有操作的对照课本运行,将过程截图写文案于CSDN。