-
-
Save huobazi/973850 to your computer and use it in GitHub Desktop.
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
- MySQL 创建超级用户 创建用户,并有localhost下所有数据库的超级权限 | |
grant all on *.* to monster@localhost identified by "123456"; | |
flush privileges; | |
- 删除用户 | |
use mysql; | |
delete from user where user = 'monster'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment