权限:
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';
权限:
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';