精选优质文档-倾情为你奉上实验训练1 在MySQL中创建数据库和表作业步骤:1、 使用show语句找出在服务器上当前存在什么数据库:mysqlshow databases;2、 创建一个数据库test:mysqlcreate database test;3、 选择你所创建的数据库:mysqluse test;4创建一个数据表:首先查看刚才创建的数据库中存在什么表:mysqlshow tables;(说明刚才创建的数据库中还没有数据库表)接着我们创建一个关于students的数据表:包括学生的学号(id),姓名(name),性别(sex),年龄(age)。mysqlcreate table students(id int unsigned not null auto_increment primary key,name char(8) not null,sex char(4) not null,age tinyint unsigned not null,);解释:以 id int unsi