MySQL 创建一个指定数据库的用户示例

前端之家收集整理的这篇文章主要介绍了MySQL 创建一个指定数据库的用户示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

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

  1. -- 512.笔记 jb51.cc
  2. MysqL -u root -p
  3. password
  4. use MysqL;
  5. insert into user(host,user,password) values('localhost','hail',password('hail'));
  6. flush privileges;
  7. create database haildb;
  8. grant all privileges on haildb.* to hail@localhost identified by 'hail';
  9. flush privileges;

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

  1. -- 512.笔记 jb51.cc
  2. grant select,update on haildb.* to hail@localhost identified by 'hail';
  3. flush privileges;

删除用户

  1. -- 512.笔记 jb51.cc
  2. delete from user where user='hail' and host='localhost';
  3. flush privileges;

删除用户数据库

  1. -- 512.笔记 jb51.cc
  2. drop database haildb;

修改指定用户密码

  1. -- 512.笔记 jb51.cc
  2. update user set password=password('new_password') where user='hail' and host='localhost';
  3. flush privileges;

1.远程登录MysqL

  1. -- 512.笔记 jb51.cc
  2. MysqL -h ip -u root -p 密码

2.创建用户

格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by “密码”;

例1:增加一个test1用户,密码为123456,可以在任何主机上登录,并对所有数据库查询增加修改删除功能。需要在MysqL的root用户下进行

  1. -- 512.笔记 jb51.cc
  2. MysqL>grant select,insert,update,delete on *.* to test1@"%" identified by "123456";
  3. MysqL>flush privileges;

例2:增加一个test2用户,密码为123456,只能在192.168.2.12上登录,并对数据库student有查询增加修改删除功能。需要在MysqL的root用户下进行

  1. -- 512.笔记 jb51.cc
  2. MysqL>grant select,delete on student.* to test2@192.168.2.12 identified by "123456";
  3. MysqL>flush privileges;

例3:授权用户test3拥有数据库student的所有权限

  1. -- 512.笔记 jb51.cc
  2. MysqL>grant all privileges on student.* to test3@localhost identified by "123456";
  3. MysqL>flush privileges;

3.修改用户密码

  1. -- 512.笔记 jb51.cc
  2. MysqL>update MysqL.user set password=password("123456") where User="test1" and Host="localhost";
  3. MysqL>flush privileges;

4.删除用户

  1. -- 512.笔记 jb51.cc
  2. MysqL>delete from user where user="test2" and host="localhost";
  3. MysqL>flush privileges;

5.删除数据库删除

  1. -- 512.笔记 jb51.cc
  2. MysqL>drop database 数据库名;
  3. MysqL>drop table 表名;

6.删除账户及权限

  1. -- 512.笔记 jb51.cc
  2. drop user 用户名@"%"
  3. drop user 用户名@localhost
  4. flush privileges;

猜你在找的MySQL相关文章