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

mysql 新建用户,赋予权限

时间:2014-11-01 16:14:24      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:http   os   数据   on   ef   new   as   数据库   sql   

mysql 创建一个用户 hail,密码 hail,指定一个数据库 haildb 给 hailmysql -u root -ppassworduse mysql;insert into user(ho

mysql 创建一个用户 hail,密码 hail,指定一个数据库 haildb 给 hail


mysql -u root -p

password

use mysql;

insert into user(host,user,password) values(‘localhost‘,‘hail‘,password(‘hail‘));

flush privileges;

create database haildb;

grant all privileges on haildb.* to hail@localhost identified by ‘hail‘;

flush privileges;

如果想指定部分权限给用户


grant select,update on haildb.* to hail@localhost identified by ‘hail‘;

flush privileges;

删除用户


delete from user where user=‘hail‘ and host=‘localhost‘;

flush privileges;

删除用户数据库


drop database haildb;

修改指定用户密码


update user set password=password(‘new_password‘) where user=‘hail‘ and host=‘localhost‘;

flush privileges;

mysql 新建用户,赋予权限

标签:http   os   数据   on   ef   new   as   数据库   sql   

原文地址:http://www.cnblogs.com/sbfnxk201/p/4067246.html

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