1/*
2The GRANT statement is used to assign full control over specific database by providing all priviledge.
3Follow below statement for assign priviledge to user
4*/
5
6Syntax:
7GRANT ALL PRIVILEGES ON mydb.* TO 'myuser'@'%' WITH GRANT OPTION;
8
9/*
10I hope it will help you.
11Namaste
12*/
1GRANT EXECUTE ON PyupROCEDURE `mysql`.`store_time_zone` TO 'some_user'@'localhost';
2