gaodaima.com
mysq创建用户并分配到某个数据库上
Sql代码
create user 'kent'@'%' identified by 'kentpassword';
create user 'kent'@'localhost' identified by 'kentpassword';
grant all privileges on ken
本文来源gaodai.ma#com搞#代!码(网
tdb.* to 'kent'@'%' with grant option;
grant all privileges on kentdb.* to 'kent'@'localhost' with grant option;
gaodaima.com