您的位置:首页 > 文旅 > 美景 > 新闻最近的大事10件_seo工作室合作_网站收录优化_百度北京总部电话

新闻最近的大事10件_seo工作室合作_网站收录优化_百度北京总部电话

2024/12/23 6:51:46 来源:https://blog.csdn.net/2403_87427886/article/details/144208012  浏览:    关键词:新闻最近的大事10件_seo工作室合作_网站收录优化_百度北京总部电话
新闻最近的大事10件_seo工作室合作_网站收录优化_百度北京总部电话

1、创建两个新用户U_student1和U_student2,密码分别为1234和5678

create user U_student1@localhost identified by '1234',
U_student2@localhost identified by '5678';

2、创建两个新用户的详细信息保存在MySQL数据库的user表中

use mysql;
select user, host, authentication_string from user;

3、修改用户名

rename user U_student1@localhost to U_stu1;

4、修改用户密码

alter user U_student2@localhost identified by 'abc123';

5、删除用户

drop user U_stu1, U_student2@localhost;

6、授予权限

使用grant语句,对用户U_student 所有的数据有查询和插入的权限,并授予grant权限

创建用户U_student

create user U_student@localhost identified by '123';
grant select, insert on *.*
to U_student@localhost
with grant option;

使用grant 语句将d_eams数据库中的student 表中的student delete 权限授予用户U_student

grant delete on d_eams.student
to U_student@localhost;

使用grant语句将d_eams数据库中的sc表中成绩列的update权限授予用户U_student

grant update(成

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com