Home > Database > Mysql Tutorial > body text

MySQL创建用户授权访问_MySQL

WBOY
Release: 2016-05-31 08:49:35
Original
982 people have browsed it

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
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!