Skip to content

Instantly share code, notes, and snippets.

@ishrakr
Last active July 23, 2018 21:11
Show Gist options
  • Save ishrakr/eb26c3cbeb44c7f37d246c5fc4fbc5bd to your computer and use it in GitHub Desktop.
Save ishrakr/eb26c3cbeb44c7f37d246c5fc4fbc5bd to your computer and use it in GitHub Desktop.
# Add User
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
# Grant Privilege
GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost' WITH GRANT OPTION;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment