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