[摘要]function 的alter routine和execute 权限。3、例子:用户root用户创建一个spuser@localhost用户并对它赋予create procedure 权限grant...
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;
+---------------------------------------------------------------------------------------------------------------+
关键词:对于mysql create routine权限的代码案例详细说明