give super privilege mysql user code example
Example 1: add super privilege mysql
grant super on *.* to user@localhost;
FLUSH PRIVILEGES;
Example 2: how to add privilege in mysql user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
grant super on *.* to user@localhost;
FLUSH PRIVILEGES;
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';