They received of letters about their TV programs.
A. dozen
B. dozen and dozen
C. score
D. dozens
查看答案
How many birds can you see in the trees?-- I can see birds in them.
A. hundreds of
B. five hundreds
C. hundred of
D. five hundreds of
以下关于索引描述中,错误的是( )。
A. 一个基本表可以创建多个索引
B. 索引可以提高数据查询的速度
C. 删除索引可以使用DROP INDEX语句
D. 索引越多越好
为teacher表的tel列创建一个唯一索引un_tel, 下列SQL语句写法是正确的是( )。
A. CREATE TABLE teacher ADD UNIQUE INDEX un_tel(tel)
B. CREATE INDEX teacher ADD UNIQUE INDEX un_tel(tel)
C. ALTER TABLE teacher ADD UNIQUE INDEX un_tel(tel)
D. ALTER TABLE teacher MODIFY UNIQUE INDEX un_tel(tel)
已知关系student(sid,sname,grade),以下关于命令“CREATE INDEX s ON student(grade)”的描述,正确的是( )。
A. 按成绩降序创建了一个普通索引
B. 按成绩升序创建了一个普通索引
C. 按成绩降序创建了一个全文索引
D. 按成绩升序创建了一个全文索引