mysql添加用户_MySQL
时间:2021-07-01 10:21:17
帮助过:20人阅读
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