Mysql添加用户使用可以对mysql数据库用户表有操作权限的用户名登陆mysqlinsert into user(Host,User,Password) values('%','name','password');如果work用户没有登陆权限,则killall mysqldshare/mysql/mysql.server startgrant all on *.* to work@'%' identified by "password"; MySQL赋予用户权限的命令的简单格式为gr…
添加用户: create user 'gouge'@'localhost' identified by 'gouge'; 赋予权限: 给gouge 用户赋予所有test开头的数据库权限 (test% 代表已test开头的数据库,如果指定单个数据库去掉%即可) grant select,insert,update,delete,create,drop,alter on `test%`.* to 'gouge'@'%' identified by 'gouge'; FLUSH PRIVILEGES;…