CREATE USER 'username'@'ip' IDENTIFIED BY 'password'; GRANT privileges ON database.table TO 'username'@'ip';
其中:
- username替换为用户名,例如“bigman”
- ip替换为可访问数据库的ip,例如“127.0.0.1”“192.168.1.1”,使用“%”表示不限制远程连接ip
- password替换为用户密码,例如“passwordforbigman”
- privileges替换为用户权限,例如“SELECT, UPDATE, DELETE”,使用“ALL”表示所有权限
- database.table替换为用户可访问的“数据库.表”,例如“human.bigman”,使用“*”表示所有数据库或表,如“*.*”或“human.*”
标签:username,例如,ip,用户,添加,mysql,权限,替换 From: https://www.cnblogs.com/XiaoMingBlingBling/p/17600628.html