博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql笔记五:权限管理
阅读量:5060 次
发布时间:2019-06-12

本文共 573 字,大约阅读时间需要 1 分钟。

1、新建用户

 insert into mysql.user(Host,User,Password)values("localhost","leon",password("123456"));

2、为某用户授权访问某数据库

 grant all privileges on test.* to leon@localhost identified by '123456';  #所有权限

 grant select on test.* to leon@localhost identified by '123456';  #所有权限

3、刷新权限表

flush privileges;

 

4、更新用户密码

update mysql.user set password=password('123456') where user='leon-1' and host='localhost';

 

5、删除用户

delete from user mysql.user where user='leon-1' and host='localhost';

 

6、查看用户权限

 show grants for leon@'localhost';

 

转载于:https://www.cnblogs.com/bjdxy/archive/2013/06/06/3121261.html

你可能感兴趣的文章
[Swift]LeetCode538. 把二叉搜索树转换为累加树 | Convert BST to Greater Tree
查看>>
拼接sql
查看>>
[GIF] Parenting in GIF Loop Coder
查看>>
vimium
查看>>
python基础之数据类型
查看>>
EntityManager方法简介
查看>>
codeforce 830A Office Keys
查看>>
错误:【No configuration found for the specified action: 'login.action' in namespace: " " 】
查看>>
C# 窗体间传值方法大汇总(转)
查看>>
C#关于多线程的笔记
查看>>
js切换背景颜色
查看>>
[数据结构]哈希表
查看>>
php中global与$GLOBALS的用法及区别
查看>>
sleep
查看>>
爱因斯坦:再牛逼的伟人,也有苦逼的青春ZZ
查看>>
实战webpack系列04
查看>>
C# 字符串截取 tips
查看>>
XML中文显示问题
查看>>
对角线之和--通用
查看>>
面向过程与面向对象
查看>>