任务介绍:综合运用本章学习的数据库相关知识,创建一张同学录表,表中有ID(主键、自动增长)、、电话等字段。 实施具体要求:1、创建数据库(student);2、表(stu_info)( ( idint not null auto jincrement primary key .stuid char( 10) not null stuname varchar( 10) not nullstuclass varchar(20) not null ,stuphone varchar(10) not null);) ;3、插入3位同学的相关信息( null,'21642', '刚刚,'软件1班,'12545849);insert into stu info (stuid ,stuname,stuclass ,stuphone )values (null,'331001', '张三,'软件1班,'123456789) ;4、按查询相关同学的信息( stuid='331001') ;5、更新本人的电话