How to Set Root Password to Null in MySQL Command Line Client
To change the root user password to null from the MySQL command line client, you can follow these steps:
use mysql; update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';
The above is the detailed content of How to Set the Root Password to Null in MySQL?. For more information, please follow other related articles on the PHP Chinese website!