读书人

mysq创办用户并分配到某个数据库上

发布时间: 2013-07-01 12:33:04 作者: rapoo

mysq创建用户并分配到某个数据库上

create user 'kent'@'%' identified by 'kentpassword';create user 'kent'@'localhost' identified by 'kentpassword';grant all privileges on kentdb.* to 'kent'@'%' with grant option;grant all privileges on kentdb.* to 'kent'@'localhost' with grant option;

读书人网 >其他数据库

热点推荐