数据库常用命令
MySQL 使用
安装 MySQL
sudo apt install mysql-server # install
sudo systemctl start mysql.service # start修改 root 密码
sudo mysql # start mysql with root userChange root password in mysql, set root password as: Xp@KAUST2023
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Xp@KAUST2023';
exit;Go back to using the default authentication method
Xiaopeng Xu