Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save StuffbyYuki/4837e4fe89333406130b17850640494f to your computer and use it in GitHub Desktop.

Select an option

Save StuffbyYuki/4837e4fe89333406130b17850640494f to your computer and use it in GitHub Desktop.
SQL:MySQL - Create a new user and grand all the privileges
--Create a new user
CREATE USER 'usrname'@'localhost' IDENTIFIED BY 'password';
--Make sure your user is on here
select user from MySQl.user;
--Grand privillages
GRANT ALL PRIVILEGES ON * . * TO 'usrname'@'localhost';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment