您的当前位置:首页正文

mysql创建数据库报错了怎么办

2024-08-01 来源:伴沃教育

问题:

创建数据库报错:Access denied for user 'root'@'%' to database 'xxx

(推荐教程:)

解决方法:

首先进入mysql命令行,输入下面命令:

grant all on xxxx.* to 'root'@'%' identified by 'password' with grant option;

xxxx代表创建的数据库,password为用户密码,在此为数据库的密码。

显示全文