日期:2014-05-16  浏览次数:20888 次

MySQL 创建用户和授权的操作。
create user '<user_name>' identified by '<password>'

grant on *.* to '<user_name>' with grant option 

?