欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql添加用户_MySQL

程序员文章站 2022-06-17 17:14:44
...
bitsCN.com mysql添加用户
先以root用户登入
选择要添加的数据库(jbpm)
use jbpm
grant all on jbpm to scott@localhost identified by scott
删除用户
mysql -uroot -proot
use mysql
delete from user where user=scott and host=localhost;
flush privileges; bitsCN.com