1. sql命令远程登陆
mysql -h xx.xx.xx.xx -u root -proot
2. 显示所有数据库
show databases;
3. 使用mydatabase数据库
use mydatabase
4. 查看当前数据库所有表
show tables;
5.