以文本方式查看主题 - 课外天地 李树青 (http://www.njcie.com/bbs/index.asp) -- 数据库系统原理课件 (http://www.njcie.com/bbs/list.asp?boardid=19) ---- 关于第五次作业的说明(索引) (http://www.njcie.com/bbs/dispbbs.asp?boardid=19&id=626) |
-- 作者:admin -- 发布时间:2009/1/4 20:16:56 -- 关于第五次作业的说明(索引) 1.建立表student,字段id为主键,系统自动为之创建主键索引 create table student (id varchar2(10),name varchar2(8),sex varchar2(2),constraint id_stu primary key (id)); 2.为name字段建立唯一索引 create unique index stu_uniq on student(name); 3.为sex字段建立位图索引 create bitmap index stu_bm on student(sex); |