Skip to content

Commit

Permalink
Update mysql.md
Browse files Browse the repository at this point in the history
  • Loading branch information
macrozheng committed Dec 12, 2018
1 parent 758046c commit 4fe75af
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion document/reference/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,14 @@ delete from emp where ename='zhangsan'

### 字符集相关
- 查看字符集:show variables like 'character%'
- 创建数据库时指定字符集:create database test1 character set utf8
- 创建数据库时指定字符集:create database test1 character set utf8

### 权限相关
- 授予所有数据库的所有权限:grant all privileges on *.* to z1@localhost identified by '123'
- 授予所有数据库的所有权限(包括grant):grant all privileges on *.* to z1@localhost with grant option
- 授予SUPER PROCESS FILE权限:grant super,process,file on *.* to z3@localhost
- 只授予登录权限:grant usage on *.* to z4@localhost
- 查看账号权限:show grants for z1@localhost
- 修改自己的密码:set password = password('123')
- 管理员修改他人密码:set password for 'z1'@'localhost' = password('123')
- 删除账号:drop user z2@localhost

0 comments on commit 4fe75af

Please sign in to comment.