Skip to content

Instantly share code, notes, and snippets.

@maninhat
Created January 28, 2019 12:09
Show Gist options
  • Save maninhat/76f650db9060be253e617d03067752f3 to your computer and use it in GitHub Desktop.
Save maninhat/76f650db9060be253e617d03067752f3 to your computer and use it in GitHub Desktop.
Create user in mysql
CREATE USER 'buhview'@'%' IDENTIFIED BY '123456';
GRANT USAGE ON *.* TO 'buhview'@'%';
GRANT SELECT ON TABLE migrants.view_acts TO 'buhview'@'%';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment