码迷,mamicode.com
首页 > 数据库 > 详细

Mysql添加用户和数据库

时间:2019-08-11 17:38:35      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:一个   cte   ant   所有权限   数据库   数据   mysql   host   cal   

  1. 先创建数据库
  2. 创建用户并赋予一个数据库的所有权限
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添加用户和数据库

标签:一个   cte   ant   所有权限   数据库   数据   mysql   host   cal   

原文地址:https://www.cnblogs.com/fsong/p/11335206.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!