7.mysql常用命令 (命令不区分大小写)
退出mysql: exit
查看mysql中有哪些数据库: show databases;
使用某个数据库: use 数据库名;
创建数据库: create database 数据库名;
查看某个数据库下有哪些标:show tables;