在mysql8中,修改系统用户密码使用以下sql语句即可:
sql
mysql> alter user king@'%' identified by '000000';
这是用户 king@'%', '000000' 是密码。您可以根据实际情况修改。
king@'%'
'000000'