mysql中授权命令grant用法详解.docx
《mysql中授权命令grant用法详解.docx》由会员分享,可在线阅读,更多相关《mysql中授权命令grant用法详解.docx(4页珍藏版)》请在三一办公上搜索。
1、mysql中授权命令grant用法详解mysql中授权命令grant用法详解:mysql中可以给你一个用户授予如select,insert,update,delete等其中的一个或者多个权限,主要使用grant命令,用法格式为:grant 权限 on 数据库对象 to 用户一、grant 普通数据用户,查询、插入、更新、删除 数据库中所有表数据的权利。grant select on testdb.* to common_user%grant insert on testdb.* to common_user%grant update on testdb.* to common_user%gra
2、nt delete on testdb.* to common_user%或者,用一条 MySQL 命令来替代:grant select, insert, update, delete on testdb.* to common_user%二、grant 数据库开发人员,创建表、索引、视图、存储过程、函数。等权限。grant 创建、修改、删除 MySQL 数据表结构权限。grant create on testdb.* to developer192.168.0.%;grant alter on testdb.* to developer192.168.0.%;grant drop on te
3、stdb.* to developer192.168.0.%;grant 操作 MySQL 外键权限。grant references on testdb.* to developer192.168.0.%;grant 操作 MySQL 临时表权限。grant create temporary tables on testdb.* to developer192.168.0.%;grant 操作 MySQL 索引权限。grant index on testdb.* to developer192.168.0.%;grant 操作 MySQL 视图、查看视图源代码 权限。grant create
4、 view on testdb.* to developer192.168.0.%;grant show view on testdb.* to developer192.168.0.%;grant 操作 MySQL 存储过程、函数 权限。grant create routine on testdb.* to developer192.168.0.%; - now, can show procedure statusgrant alter routine on testdb.* to developer192.168.0.%; - now, you can drop a proceduregr
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- mysql 授权 命令 grant 用法 详解

链接地址:https://www.31ppt.com/p-3161934.html