1.已经创建以下数据表create table student(
sno varchar(10) not null primary key comment'学号',
sname varchar(20) not null comment'姓名',
ssex enum('男','女') not null comment'性别',
sbirth date not null comment'出生日期',
sclass varchar(10) not null comment'班级',
zno varchar(4) null comment'专业号',
foreign key (zno) references specialty(zno)
);
将sname varchar(20)修改为sname varchar(30)
alter table student () sname varchar(30);