Created
January 28, 2019 12:09
-
-
Save maninhat/76f650db9060be253e617d03067752f3 to your computer and use it in GitHub Desktop.
Create user in mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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