create user 'wechat'@'192.168.10.%' identified by 'xxxxx';

create database 库名DEFAULT CHARSET utf8 COLLATE utf8_general_ci;

grant all privileges on 库名.* to 'wechat'@'192.168.10.%' identified by 'xxxxx';

05-08 15:51