設定方法:1、使用「set password =password('你的密碼');」指令;2、使用「update user set password=password('你的密碼') where user='root ';”命令。
mysql設定密碼
#有很多方法:
1、用root進入mysql後
mysql>set password =password('你的密码'); mysql>flush privileges;
2、使用GRANT語句
mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ; mysql>flush privileges;
3、進入mysql庫修改user表
mysql>use mysql; mysql>update user set password=password('你的密码') where user='root'; mysql>flush privileges;
推薦教學:mysql影片教學
#以上是如何設定mysql的登入密碼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!