MySQL 新增用户并指定权限

权限:

ALL/ALTER/CREATE/DROP/SELECT/UPDATE/DELETE

数据库:

*.* 表示所有库的所有表
test.* 表示test库的所有表
test.test_table 表示test库的test_table表

登陆主机:

% 表示所有ip
localhost 表示本机
192.168.1.1 指定IP

grant all on test.* to user@localhost identified by 'password';

你可能感兴趣的:(MySQL 新增用户并指定权限)