MySQL创建用户授权访问_MySQL
bitsCN.com mysql -u root -p #输入密码 创建一个用户名为zzy,密码为zzy的mysql普通用户,并且授权该用户只有对zzy这个数据库有操作权限. 1.1第一种方式: use mysql; insert into user (user,host,password) values ('zzy','localhost',password('zzy')); #授权 grant all privileges on zzy.* to zzy; #刷新权限表 flush privileges; 1.2第二种方式: create user zzy@'localhost' identified by 'zzy' #授权 grant all privileges on zzy.* to zzy; #flush privileges; |