给这个用户所有权限(all),可以操作所有数据库里的所有表(*.*)
grant all privileges on *.* to ‘test1‘@‘192.168.1.196‘;
创建用户和授权,使用一个语句
创建用户test3指定ip并分配权限 select,delete,update,insert 操作shop数据库下的所有表
grant select,delete,update,insert on shop.* to ‘test3‘@‘127.0.0.1‘ identified by ‘000000‘;
查看权限
show grants for ‘test‘@‘192.168.1.196‘\G;
删除用户
drop user ‘test3‘@‘127.0.0.1‘;
-----------------------------------------------
原文:https://www.cnblogs.com/chefweb/p/9073913.html