1. If the user has the create routine permission, he can create a procedure | function. 2. If a user creates a procedure | function, MySQL will automatically grant him the alter routine and execute permissions for the procedure | function. 3. Example: User root creates a spuser@'localhost' user and grants it the create procedure permission grant create routine on tempdb.* to spuser@'localhost' identified by '123456'; Create a routine with the spuser@'localhost' user delimiter go create procedure sp_hello_world() begin select 'hello world'; end go delimiter ; Check the permissions of spuser@'localhost' again 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' | +---------------------------------------------------------------------------------------------------------------+ The above description of mysql create routine permissions is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to assign a public IP address to an instance in Linux
>>: Problems with using wangeditor rich text editing in Vue
How to host two or more sites on the popular and ...
Joint Index The definition of the joint index in ...
1. Introduction I wrote an article before: The pr...
Cocos Creator modular script Cocos Creator allows...
This article will explain the composition of the ...
Configuring network connectivity for Linux system...
This article shares the specific code for JavaScr...
In the case of concurrent access, non-repeatable ...
This article mainly describes how to implement fo...
A colleague once told me to use a temporary table...
Introduction to the polling algorithm Many people...
By default, MySQL can accept the insertion of 0 v...
Six steps of JDBC: 1. Register the driver 2. Get ...
1. The ul tag has a padding value by default in Mo...
Preface In Java programming, most applications ar...