- 创建用户
1.1 create user ‘user’@’host’ identified by ‘pwd’;
1.2 insert into mysql.user(host,user,password) values(‘host’,’user’,’pwd’);
1.3 使用grant授权与创建用户一起 - 授权
2.1 grant privileges on db.tb to ‘user’@’host’;
2.2 show grants for ‘user’@’host’;
mysql创建用户/新增用户及授权
最新推荐文章于 2022-11-03 19:11:45 发布