博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql创建应用账号
阅读量:6091 次
发布时间:2019-06-20

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

-- 赋予某个库全部权限

use mysql;
grant all privileges on test_db.* to test_user@'%' identified by 'Aa123456';
grant all privileges on test_db.* to test_user@'localhost' identified by 'Aa123456';
flush privileges;
 
-- 赋予某个库增删改查权限
use mysql;
grant select,insert,update,delete on test_db.* to test_user@'%' identified by 'Aa123456';
grant select,insert,update,delete on test_db.* to test_user@'localhost' identified by 'Aa123456';
flush privileges;

转载于:https://www.cnblogs.com/liang545621/p/9400176.html

你可能感兴趣的文章
扩展器必须,SAS 2.0未必(SAS挺进中端存储系统之三)
查看>>
Eclipse遇到Initializing Java Tooling解决办法
查看>>
while((ch = getchar()) != '\n')
查看>>
好程序员web前端分享JS检查浏览器类型和版本
查看>>
Oracle DG 逻辑Standby数据同步性能优化
查看>>
exchange 2010 队列删除
查看>>
「翻译」逐步替换Sass
查看>>
H5实现全屏与F11全屏
查看>>
处理excel表的列
查看>>
C#数据采集类
查看>>
quicksort
查看>>
【BZOJ2019】nim
查看>>
LINUX内核调试过程
查看>>
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>