Mysql添加用户和数据库
Posted fsong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql添加用户和数据库相关的知识,希望对你有一定的参考价值。
- 先创建数据库
- 创建用户并赋予一个数据库的所有权限
use mysql;
create database databaseName character set utf8;
grant all privileges on databaseName.* to username@'ip' identified by 'password';
举例:
use mysql;
create database test_db character set utf8;
grant all privileges on test_db.* to testuser@'localhost' identified by '123456';
以上是关于Mysql添加用户和数据库的主要内容,如果未能解决你的问题,请参考以下文章