连接mysql服务器并指定IP和端口 mysql -uroot -proot -h127.0.0.1 -P3306 查看库 show databases; 进入库 use mysql; 查看已进入的库 select database(); #删除库–避免错误 drop database mysql; drop database if exists mydb1; 创建库–并指定编码(如果不存在) create database if not exists mydb1 charset utf8; 查看当前数据库中的所有表 show tables; 删除表(如果存在) drop table if