相关考题
-
单项选择题
下面哪项操作不是索引的合理使用?()
A.在检索列上创建索引,可以加快检索速度
B.在主键列上创建索引,可以组织表中数据存储
C.在“性别”列上创建索引,可以加快检索速度
D.在外键列上创建索引,可以加快连接速度 -
单项选择题
实现查询学生表STUDENT信息,并按照出生日期倒序排列的SQL语句为()
A.select *from student sort by Birthday
B.select *from student order by Birthday
C.select *from student order by Birthday Desc
D.select *from student sort by Birthday Desc -
单项选择题
对学生表STUDENT插入数据,其正确的SQL语句为()
A.insert student value ("2015001",“XX“)
B.insert student value (’2015001’,’XX’)
C.insert into student value (’2015001’,’XX’)
D.insert into student values (’2015001’,’XX’)
