博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql创建应用账号
阅读量:6092 次
发布时间: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

你可能感兴趣的文章
Web应用开发周期
查看>>
jQuery 操作html元素
查看>>
linux 搜索文本
查看>>
抬杠APP获Donews“年度最佳运营创意”大奖,跨界营销引瞩目
查看>>
明年起无CDN牌照的CDN服务商将禁止提供服务
查看>>
2014中国呼叫中心知识库发展的5个趋势
查看>>
微软MCITP系列课程(二五)限制软件运行
查看>>
神码与SUSE共促Unix向x86+Linux迁移
查看>>
“二选一”是支付宝首创,背后是帝国的霸权逻辑
查看>>
暴裂无声张一鸣
查看>>
超实用Mac软件分享(二)
查看>>
NoSQL数据库简介
查看>>
【原】unity3d空间画线
查看>>
Power Desginer系列00【转载】
查看>>
Razor引擎学习:RenderBody,RenderPage和RenderSection
查看>>
nyoj263精 挑 细 选
查看>>
Performance tuning in Python
查看>>
Solr应用扩展queryParser
查看>>
Mac使用笔记(二)
查看>>
POJ 1047
查看>>