mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-21 21:41:46 -07:00
add method to get all users privileges
This commit is contained in:
parent
3efe61f50c
commit
e607ce1974
2 changed files with 97 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
DELIMITER //
|
||||
DROP PROCEDURE IF EXISTS users_privs_db.get_all_items;
|
||||
CREATE PROCEDURE users_privs_db.get_all_items()
|
||||
BEGIN
|
||||
SELECT * from users_privs_db.t1;
|
||||
END //
|
||||
DELIMITER ;
|
Loading…
Add table
Add a link
Reference in a new issue