create table t_student( stu_id int not null , stu_name char(10)
分类: 单选题发布时间: 2024-01-20 20:41浏览量: 0
create table t_student( stu_id int not null , stu_name char(10) not null , stu_age int not null, index index_id (stu_id) )engine=InnoDB default charset=utf8;说法正确的是?