MySQL 创建用户并授予权限
首先为用户创建一个数据库(phplampDB)
create database phplampDB;
授权phplamp用户拥有phplamp数据库的所有权限
grant all privileges on phplampDB.* to phplamp@localhost identified by '1234';
刷新系统权限表
flush privileges;
如果想指定部分权限给一用户,可以这样来写:
grant select,update on phplampDB.* to phplamp@localhost identified by '1234';
刷新系统权限表。
flush privileges;
grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’;
权限1,权限2,…权限n代表
select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file