建立数据库aCREATE DATABASE a;建立用户a_f,并授权a_f可以在192.168.0.1这台机器用123456密码访问数据库a,可以使用的命令有"select,insert,update,delete,create,drop"grant select,insert,update,delete,create,drop on a.* to a_f@192.168.0.1 Identified by "123456";然后刷新授权FLUSH PRIVILEGES;