美文网首页
mysql 添加用户

mysql 添加用户

作者: Dico_zhang | 来源:发表于2017-05-15 16:06 被阅读11次

    http://www.cnblogs.com/wanghetao/p/3806888.html
    insert into mysql.user(Host,User,Password) values("localhost","tin",password("tinS0n!c"));
    create database tin;
    grant all privileges on tin.* to tin@localhost identified by "tinS0n!c";
    flush privileges;

    相关文章

      网友评论

          本文标题:mysql 添加用户

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