MySQL コマンド ライン クライアントで root パスワードを Null に設定する方法
MySQL コマンド ライン クライアントから root ユーザーのパスワードを null に変更するには
use mysql; update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';
以上がMySQL で root パスワードを Null に設定するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。