Home  >  Article  >  Database  >  MySQL创建用户授权访问_MySQL

MySQL创建用户授权访问_MySQL

WBOY
WBOYOriginal
2016-05-31 08:49:35982browse

bitsCN.com

mysql -u root -p

#输入密码

创建一个用户名为zzy,密码为zzy的mysql普通用户,并且授权该用户只有对zzy这个数据库有操作权限.

1.1第一种方式:

use mysql;

insert into user (user,host,password) values ('zzy','localhost',password('zzy'));

#授权

grant all privileges on zzy.* to zzy;

#刷新权限表

flush privileges;

1.2第二种方式:

create user zzy@'localhost'  identified by 'zzy'

#授权

grant all privileges on zzy.* to zzy;

#flush privileges;



bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn