非聚集索引并不存储数据本身,在一个表中可以存在()非聚集索引。
A. 一个
B. 多个
C. 1000个
D. 以上都不对
查看答案
索引可以被定义为唯一的或非唯一的,唯一索引确保列中所保存的值在表中出现()。
A. 一次
B. 两次
C. 多次
D. 一次或多次
1.在数据库标准语言SQL中,关于NULL值叙述正确选项是()。
A. NULL 表示空格
B. NULL表示0
C. NULL既可以表示0,也可以表示是空格
D. NULL表示空值
3.在select语句中利用()关键字能够去除结果表中重复的记录。
A. top
B. into
C. distinct
D. add
4.分别统计男女生人数正确的SELECT命令为()。
A. select count(*) from student where sex='男' and sex='女'
B. select count(*) from student where sex='男' or sex='女'
C. select count(*) from student order by sex
D. select count(*) from student group by sex