如何在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中文網其他相關文章!