I am Oliver

修改 wamp 中 mysql 默认空密码

1
2
3
4
5
use mysql

update user set password=PASSWORD('hooray') where user='root';

flush privileges;
打赏