mysql创建用户
学习了:https://blog.csdn.net/leili0806/article/details/8573636
create user 'root'@'127.0.0.1' identified by 'root';
grant all privileges on *.* to root@127.0.0.1;
flush privileges;
本文共 187 字,大约阅读时间需要 1 分钟。
mysql创建用户
学习了:https://blog.csdn.net/leili0806/article/details/8573636
create user 'root'@'127.0.0.1' identified by 'root';
grant all privileges on *.* to root@127.0.0.1;
flush privileges;