我使用默认设置安装了WAMP。安装后,Mysql通常有4个默认dbs。它们是:information_schema,mysql,performance_schema和test。
但是当我用下面的方法更改root的密码时,会删除mysql和performance_schema。
mysql>update user set password='test' where user='root';
Query OK, 3 rows affected (0.06 sec)
Rows matched: 3 Changed: 3 Warnings: 0
mysql> flush privileges ;
Query OK, 0 rows affected (0.17 sec)
mysql> quit ;
然后我重新启动了所有WAMP服务,我仍然不需要密码来登录mysql。更糟糕的是mysql和performance_schema已经消失了。
太奇怪了。我确定没有执行这样的SQL。
有人可以帮忙解决这个问题吗?此外,如何在WAMP中修改root的密码。