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;说法正确的是?

A.index_id是字段名

B.index_id是唯一索引的名称

C.index_id是外键名称

D.index_id是普通索引的名称

正确答案是D