美文网首页
MySQL新建用户并授权

MySQL新建用户并授权

作者: hybo | 来源:发表于2016-07-25 09:49 被阅读0次
    创建用户
    create user 'dev'@'localhost' identified by '123456';
    
    授权
    grant all privileges on *.* to 'dev'@'localhost' identified by '123456';
    

    相关文章

      网友评论

          本文标题:MySQL新建用户并授权

          本文链接:https://www.haomeiwen.com/subject/qwygjttx.html