MySQL 新增用户并指定权限
2016-07-31 本文已影响0人
无言的守望者
权限:
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';