Mysql创建新用户并赋予权限
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql创建新用户并赋予权限相关的知识,希望对你有一定的参考价值。
参考技术A create user '用户名'@'localhost'identified by'密码';grant all on 权限 to 用户名@'localhost' identified by "密码";
show grants for '用户名'@'localhost';
select user,host from mysql.user;
以上是关于Mysql创建新用户并赋予权限的主要内容,如果未能解决你的问题,请参考以下文章