时间:2021-07-01 10:21:17 帮助过:27人阅读
1、以root身份就如mysql
mysql -u root -p
2、创建一个数据库,打开命令行,先使用root用户登录系统MySQL
create database itheima;
3、创建一个数据库用户
create user hmcxy identified by ‘123456‘;
4、在命令行使用刚创建的用户登录,这时是无法访问itheima数据库的,只能看到information_schema,因为hmcxy没有权限
5、为创建的用户授权,需要切换回root用户登录,执行grant命令
grant all on itheima.* to hmcxy;
6、使用新创建的数据库用户登录MySQL系统,这时你可以看到授权的数据库了
mysql创建数据库
标签:format 需要 权限 技术 img pre ase creat 图片