下面小编就为大家带来一篇关于mysql create routine 权限的一些说明。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
1、如果用户有create routine 权限那么他就可以创建procedure | function 。
2、如果用户创建了procedure | function 那么mysql 会自动赋予它对procedure | function 的alter routine和execute 权限。
3、例子:
用户root用户创建一个spuser@'localhost'用户并对它赋予create procedure 权限
grant create routine on tempdb.* to spuser@'localhost' identified by '123456';
用spuser@'localhost'用户去创建一个routine
delimiter go
create procedure sp_hello_world()
begin
select 'hello world';
end
go
delimiter ;
再一次查看spuser@'localhost'的权限
mysql> show grants;
+---------------------------------------------------------------------------------------------------------------+
| grants for spuser@localhost |
+---------------------------------------------------------------------------------------------------------------+
| grant usage on *.* to 'spuser'@'localhost' identified by password '*6bb4837eb74329105ee4568dda7dc67ed2ca2ad9' |
| grant create routine on `tempdb`.* to 'spuser'@'localhost' |
| grant execute, alter routine on procedure `tempdb`.`sp_hello_world` to 'spuser'@'localhost' |
+---------------------------------------------------------------------------------------------------------------+
【相关推荐】
1. mysql免费视频教程
2. 详解innodb_index_stats导入数据时
提示表主键冲突的错误
3. 实例详解
mysql中innodb_autoinc_lock_mode
4. mysql中添加新用户权限的实例详解
5. 实例详解mysql中init_connect方法
以上就是简述mysql中create routine 命令的详细内容。